File: Overlay/YMMOG/YMMOGMessage.msg
Message used to create or delete a YMMOG-node
The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.
YMMOGMessage | Base message for all messages used by YMMOG |
Name | Type | Description |
---|---|---|
nodeType | int | the NodeClass of the new node |
jobType | int | delete or create a node? |
creationSuccessfull | bool | true if creation/deletion was successfull |
subSpaceToCreate | SubSpace | the SubSpace into the new node is placed |
message CreateNodeMessage extends YMMOGMessage { fields: int nodeType; // the NodeClass of the new node int jobType; // delete or create a node? bool creationSuccessfull; // true if creation/deletion was successfull SubSpace subSpaceToCreate; // the SubSpace into the new node is placed }