Message PublishEventListMessage

File: Overlay/YMMOG/YMMOGMessage.msg

Message used to publish eventLists in a SubSpace

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
timeSlot int

the timeSlot to which the eventList belongs to

sent double

simTime() when this message was sent

sender IPAddress

the IPAddress of the sender of the eventList

subSpaceId int

the SubSpace this eventList is for

eventList Event[]

the eventList that has to be published

Source code:

message PublishEventListMessage extends YMMOGMessage {
    fields:
        int timeSlot;    // the timeSlot to which the eventList belongs to
        double sent;    // simTime() when this message was sent
        IPAddress sender;    // the IPAddress of the sender of the eventList
        int subSpaceId;    // the SubSpace this eventList is for
        Event eventList[];    // the eventList that has to be published
}