Packet NewSuccessorHintMessage

File: src/overlay/chord/ChordMessage.msg

C++ definition

Message used to inform about a new successor node

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.

Extends:

Name Type Description
ChordMessage packet

Base message for all messages used by Chord

Fields:

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

Source code:

//
// 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
}