Message CreateNodeMessage

File: Overlay/YMMOG/YMMOGMessage.msg

Message used to create or delete a YMMOG-node

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

YMMOGMessage

Base message for all messages used by YMMOG

Fields:

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

Source code:

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
}