Public Member Functions |
| | DtFedAmbCallbackMsg (std::auto_ptr< DtFedAmbCallback > callback) |
| | Constructor.
|
| virtual | ~DtFedAmbCallbackMsg () |
| | Destructor.
|
| virtual DtRtiMsg * | clone (bool copy=true) const |
| | Return a copy/empty object of the same type as this.
|
| virtual DtRtiMsgKind | internalDtRtiMsgKind () |
| | Return the message type.
|
| virtual void | evokeCallback (RTI::FederateAmbassador *fedAmb) const |
| | Evoke the callback.
|
| virtual void | printData (DtLogicalTimeFactory *logicalTimeFactory) const |
| | Print message data.
|
| virtual | ~DtRtiMsg () |
| | Destructor.
|
| virtual DtRtiMsg * | cloneWithTransport (bool copy=true) const |
| | Return a copy/empty object of the same type as this using clone and set the transport type from the host message.
|
| virtual DtNetMsgHeader * | netHeader () const |
| | Get header of network representation.
|
| virtual int | version () const |
| | Return the message version.
|
| virtual bool | isValidVersion () const |
| | Returns bool: message version is valid?
|
| virtual void | setFedEx (const MAKRti::DtString &name) |
| | All RTI messages contain information to identify which federation execution the message applies to.
|
| virtual void | setFedEx (int handle) |
| | Set federation execution identifier as a handle.
|
| virtual bool | isForExec (const MAKRti::DtString &execName, int execHandle) const |
| | Returns true if the current message belongs to the indicated federation execution, false otherwise.
|
| virtual DtRtiMsgKind | msgKind () const |
| | Get the message kind.
|
| virtual const char * | kindString () const |
| | Returns the message kind string name.
|
| virtual bool | isConstrained () const |
| | Return boolean: message type can be time constrained?
|
| virtual bool | isAllowedDuringSave () const |
| | Return boolean: message type can be processed during save?
|
| virtual void | setTime (const RTI::FedTime &time) |
| | Set/Get time Used in timestamped messages.
|
| virtual RTI::FedTime const * | time (DtLogicalTimeFactory *fedTimeFactory) const |
| virtual bool | hasTime () const |
| | Returns true if time field is valid.
|
| virtual void | setSerialNumber (unsigned long serialNumberValue) |
| | Set/Get event retraction serial number Used in timestamped messages.
|
| virtual unsigned long | serialNumber () const |
| virtual void | setTransportType (DtTransportHandle type) |
| | Set/Get transport type.
|
| virtual DtTransportHandle | transportType () const |
| virtual DtOrderHandle | orderType () const |
| | This base implementation always returns recieve order.
|
| virtual bool | isMetadataPresent () const |
| | Test if metadata has been added to a DtRtiMsg object.
|
| virtual bool | addMetadata (caddr_t *mtdAddr, unsigned int size, unsigned int *alignPad, unsigned int *headerPad=NULL) |
| | Allocate space for next block of metadata.
|
| virtual void | removeMetadata (unsigned int size) |
| | Update the size of the message when metadata has been removed.
|
| bool | isInteractionMsgType () const |
| | Utility functions, check the message type against known interaciton/update message types.
|
| bool | isUpdateMsgType () const |
| virtual void | print (DtLogicalTimeFactory *logicalTimeFactory) const |
| | Printing functions.
|
| virtual void | printHeader (DtLogicalTimeFactory *logicalTimeFactory) const |
| virtual void | printTime (const char *label, RTI::FedTime const *timeValue) const |
| | Print the given time.
|
| virtual void | printInterval (const char *label, RTI::FedTime const *intervalValue) const |
| | Print the interval.
|
| virtual int | status () const |
| | Returns MSG_STATUS_OK if OK, a reason enumeration otherwise.
|
| virtual const MAKRti::DtString | fedExName () const |
| | These two functions should be avoided in favor of isForExec().
|
| virtual int | fedExHandle () const |
| | Get the federation execution identifier as a handle Returns 0 if the identifier is being represented as a name.
|
| virtual void | setFederateHandle (DtFederateHandle handle) |
| | Set/Get federate handle.
|
| virtual DtFederateHandle | federateHandle () const |
| | Set/Get federate handle.
|
| virtual void | setSequenceNumber (unsigned long value) |
| | Set/Get message sequence number.
|
| virtual unsigned long | sequenceNumber () const |
| | Set/Get message sequence number.
|
| virtual void | setServiceCallNumber (unsigned long value) |
| | Set/Get service call number.
|
| virtual unsigned long | serviceCallNumber () const |
| | Set/Get service call number.
|
| virtual void | setTriggerMessageNumber (unsigned long value) |
| | Set/Get trigger message sequence number (i.e., the message being processed that triggered this message being sent).
|
| virtual unsigned long | triggerMessageNumber () const |
| | Set/Get trigger message sequence number (i.e., the message being processed that triggered this message being sent).
|
A message that delivers stored callbacks generated by asynchronous thread.
The callback message is processed in the federate's thread when it evokes tick or evokeCallback. An appropriate federate ambassador callback is made and passed the stored parameters.