Message used to inform about a new successor node
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.
Name | Type | Description |
---|---|---|
ChordMessage | packet |
Base message for all messages used by Chord |
Name | Type | Description |
---|---|---|
srcNode | NodeHandle |
nodehandle of the message originator |
preNode | NodeHandle |
the predecessor of the message originator |
command | int |
message type (NEWSUCCESSORHINT, ...) |
type | int |
message type |
statType | int |
message type for stats |
// // Message used to inform about a new successor node // packet NewSuccessorHintMessage extends ChordMessage { NodeHandle srcNode; // nodehandle of the message originator NodeHandle preNode; // the predecessor of the message originator }