C++ definition: click here
Message used to answer to a NotifyCall message
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.
| BaseResponseMessage | (unknown -- not in documented files) |
| Name | Type | Description |
|---|---|---|
| sucNum | int |
number of entries in the successor list |
| preNodeSet | bool |
indicates if the dest node has been set as new predecessor (for merging) |
| sucNode | NodeHandle[] |
successor list of the message originator |
| preNode | NodeHandle |
in aggressiveJoinMode: predecessor hint |
// // Message used to answer to a NotifyCall message // packet NotifyResponse extends BaseResponseMessage { int sucNum; // number of entries in the successor list NodeHandle sucNode[]; // successor list of the message originator NodeHandle preNode; // in aggressiveJoinMode: predecessor hint bool preNodeSet; // indicates if the dest node has been set as new predecessor (for merging) }