Base class for all messages handled by overlay modules
Author: Bernhard Heep
See also: ChordMessage
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.
OverSimMessage (packet) | (no description) |
BaseAppDataMessage (packet) | (no description) |
BaseRouteMessage (packet) | (no description) |
BaseRpcMessage (packet) |
A basic Remote-Procedure-Call message used for calls and return values |
BootstrapLookupMessage (packet) |
Internal message for the BootstrapList lookup listener |
ChordMessage (packet) |
Base message for all messages used by Chord |
GameAPIMessage (packet) |
MOVEMENT_REQUEST |
GiaMessage (message) |
Main GIA-Message definition Author: Robert Palmer |
KademliaRoutingInfoMessage (packet) |
Message to inform node about potential next hops during recursive routing |
NiceMessage (message) | (no description) |
PastryMessage (packet) |
Base message for all messages used by Pastry |
PubSubBackupIntermediateMessage (packet) | (no description) |
PubSubBackupSubscriptionMessage (packet) | (no description) |
PubSubBackupUnsubscribeMessage (packet) | (no description) |
PubSubFailedNodeMessage (packet) | (no description) |
PubSubHelpReleaseMessage (packet) | (no description) |
PubSubMoveListMessage (packet) | (no description) |
PubSubMoveMessage (packet) | (no description) |
PubSubNodeLeftMessage (packet) | (no description) |
PubSubReleaseIntermediateMessage (packet) | (no description) |
PubSubReplacementMessage (packet) | (no description) |
PubSubUnsubscriptionMessage (packet) | (no description) |
QuonMessage (packet) |
JOIN_REQUEST |
VastMessage (packet) |
Base message for all messages used by Vast JOIN_REQUEST, ENCLOSING_NEIGHBORS_REQUEST, PING, PONG |
Name | Type | Description |
---|---|---|
statType | int |
message type for stats |
type | int |
message type |
// // Base class for all messages handled by overlay modules // // @author Bernhard Heep // @see ChordMessage // packet BaseOverlayMessage extends OverSimMessage { int type @enum(BaseOverlayMessageType) = OVERLAYSIGNALING; // message type int statType @enum(StatType) = MAINTENANCE_STAT; // message type for stats }