Message CompReadyMessage

File: Common/CommonMessages.msg

Notification that a component finished its init phase

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:

cMessage (unknown -- not in documented files)

Fields:

Name Type Description
ready bool

true, if the component is ready

comp int

the component, which is ready

Source code:

message CompReadyMessage extends cMessage {
fields:
    bool ready;              // true, if the component is ready
    int comp enum(CompType); // the component, which is ready 
};