Message used to inform about a new successor node
The following diagram shows usage relationships between types.
Unresolved types are missing from the diagram.
The following diagram shows inheritance relationships for this type.
Unresolved types are missing from the diagram.
ChordMessage (packet) |
Base message for all messages used by Chord |
Name | Type | Description |
---|---|---|
srcNode | NodeHandle |
nodehandle of the message originator |
statType | int |
message type for stats |
command | int |
message type (NEWSUCCESSORHINT, ...) |
type | int |
message type |
preNode | NodeHandle |
the predecessor of the message originator |
// // 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 }