Base class for all common API message types
Author: Bernhard Heep
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 |
---|---|---|
KBRdeliver | packet |
Message type for information sent from the overlay to the application |
KBRforward | packet |
Message type for KBR forward calls |
KBRroute | packet |
Message type for KBR route calls |
KBRupdate | packet |
Message type to inform overlay nodes about new or left nodes |
Name | Type | Description |
---|---|---|
type | int |
message type |
// // Base class for all common API message types // // @author Bernhard Heep // packet CommonAPIMessage { int type @enum(CommonAPIMessageType) = COMMON_API_UNDEFINED; // message type }