Enum ProximityLookupMetrik

File: src/common/ProximityLookupMessages.msg

(no description)

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Source code:

enum ProximityLookupMetrik
{

    NONE = 0;                       // No metric is choosen
    BY_KEY = 1;                     // Metric compares by key
    BY_KEY_X = 2;                   // Metric compares by key and choose the best proximity out of X nodes
    BY_PROXIMITY = 3;               // Metric compares by proximity
    BY_PROXIMITY_X = 4;             // Metric compares by proximity and choose the best NodeID out of X nodes
    BY_KEY_AND_PROXIMITY = 5;       // Metric compares by key and then by proximity
    BY_KEY_AND_PROXIMITY_WEIGHT = 6;// Metric calculates a compar value from key and proximity
}