MAK RTIspy API Documentation for HLA Evolved
List of all members | Public Member Functions | Static Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | Static Protected Attributes
DtRtiExec Class Reference
+ Collaboration diagram for DtRtiExec:

Public Member Functions

virtual ~DtRtiExec ()
 Destructor.
virtual void shutdownForwarderIfCreated ()
virtual void checkVersion (const DtString &version) const
 Called by the exec application to make sure that the RTI Version matches.
virtual void processCreate (const DtCreateMsg &msg)
 Called when a createFedEx message is received.
virtual void processDestroy (const DtDestroyMsg &msg)
 Called when a destroyFedEx message is received.
virtual void processListFederations (const DtListFederationsMsg &msg)
 Called when a list federations message is received.
virtual void processJoin (const DtJoinMsg &msg)
 Called when a Join message is received.
virtual void processDisconnect (const DtDisconnectMsg &msg)
 Called when a disconnect message is received Actually used to capture broken connection.
virtual void processQueueFull (const DtQueueFullMsg &msg)
 Called when a queue full message is received.
virtual void processReconnect (const DtReconnectMsg &msg)
 Called when a reconnect message is received Actually used to recover from a broken connection.
virtual DtFedExeccreateFedEx (DtConnectionMgr *connMgr, const std::vector< unsigned int > &crcs, const char *fedExName, std::string const &timeImplName, MAKRti::DtFomType fedType, const std::vector< DtString > &fedFileName, const DtString &momModuleName, int fedExHandle, DtRIDParameters *params, unsigned int momModuleCrc)
 Returns a new fed ex instance, Override this function to replace the default federation execution object.
DtConnectionMgrconnectMgr ()
 Returns the connection manager Not virtual because referenced in both ctors and dtors.
virtual bool exists (const DtString &fedExName)
 Returns true if the name fedex exists, false otherwise.
virtual void destroyFederationByName (const DtString &fullFedexName, bool sendDestroyResponse=true, bool forceDestroy=false)
 Attempt to destroy a federation.
int processQuit ()
 User request to quit is processed.
virtual void listFederates ()
 Respond to a request to list federates through interactive input.
virtual void parseDeleteCommand (const DtString &command, unsigned int &handle, DtString &federationName) const
 Respond to a request to delete a federate through interactive input.
virtual int deleteFederate (unsigned int handle, const DtString &federationName)
virtual void processUpdateNotifyLevel (DtNotifyLevelType level)
 Updates the rtiexec notify level.
virtual void exit ()
 Causes the rtiexec to exit.
virtual void enableLogging ()
 Enables logging.
virtual void enableWebSpy (const DtInetAddr &webSpyIpAddr, int webSpyPort)
 Sets the web spy connection status as enabled and connected.
DtFedExecfedExec (const DtString &fedExName)
 Search for a fed executive by name.
const DtFedExecfedExec (const DtString &fedExName) const
const std::map< DtString,
DtFedExec * > & 
fedExecs () const
 Returns a reference to the entire map of federations.
const DtRIDParametersparams () const
 Returns a handle to the current RID Params.
virtual void run ()
 main loop
virtual bool tick (bool noCallbacks=false)
 Work performed here for each cycle in main loop.
virtual void wait (DtTime intervalInSeconds)
 Wait for input or until the the given interval expires.
virtual void addFedExCreatedCallback (DtFedExCbFn fn, void *usr)
 Register a callback to be triggered whenever a new federation execution is created.
virtual void removeFedExCreatedCallback (DtFedExCbFn fn, void *usr)
virtual void addFedExDestroyedCallback (DtFedExCbFn fn, void *usr)
 Register a callback to be triggered whenever an existing federation execution is destroyed.
virtual void removeFedExDestroyedCallback (DtFedExCbFn fn, void *usr)
virtual void addLogFileNameUpdatedCallback (DtLogFileNameCbFn fn, void *usr)
 Register a callback to be triggered whenever the log file name for the rtiexec is updated.
virtual void removeLogFileNameUpdatedCallback (DtLogFileNameCbFn fn, void *usr)
virtual void addWebServerUpdatedCallback (DtWebServerCbFn fn, void *usr)
 Register a callback to be triggered whenever the web server for the rtiexec is updated.
virtual void removeWebServerUpdatedCallback (DtWebServerCbFn fn, void *usr)
virtual void addTickCallback (DtTickCbFn fn, void *usr, DtTime interval)
 Register a callback to be called during tick, but only at the given interval.
virtual void removeTickCallback (DtTickCbFn fn, void *usr)
virtual void addTickCallback (DtTickWithExecCbFn fn, void *usr, DtTime interval)
 Register a callback to be called during tick, but only at the given interval.
virtual void removeTickCallback (DtTickWithExecCbFn fn, void *usr)
virtual void sendCreateResponseMsg (const unsigned long destinationID, DtCreateResponseFlag flag, MAKRti::DtString const &errorString)
 Send RTI messages.
virtual void sendDestroyResponseMsg (const char *fedExName, DtDestroyResponseFlag flag)
virtual void sendReportFederationsMsg (unsigned long destId, const std::vector< DtString > &federationNames, const std::vector< DtString > &timeImplNames)
virtual void sendJoinResponseMsg (unsigned long destinationIDValue, unsigned short requestID, unsigned int crc, DtFederateHandle handle, const char *fedName, int fedExHandle, const char *fedExName, const DtString &momModule, const std::vector< DtString > &fedFileName, unsigned long flags, bool allowNetworkTesting, MAKRti::DtString const &errorString, DtJoinResponseMsg::errorCodes errorValue=DtJoinResponseMsg::DT_NO_ERROR)
virtual void ridRequestCb (const DtRidTestRequestMsg &msg)
 The RID request callback is processed by the RTI in response to a ridTestRequest.

Static Public Member Functions

static DtRtiExeccreate (DtRIDParameters *p, DtBoost::shared_ptr< DtFilePrinter > logPrinter, bool autoExit=false, const DtRtiConnectionInfoDataPair &connInfo=DtRtiConnectionInfoDataPair())
 Creates an instance of a DtRtiExec;.
static void setCreatorFunction (DtRtiExecCreator fn)
 Call this function to set an alternate creator function With this function, users can replace this DtRtiExec with their own derived class.
static void processRtiExecHandshakeMsg (const DtRtiExecHandshakeMsg &msg, void *usr)
 Handshake message callback.
static void processCreate (const DtCreateMsg &msg, void *usr)
 Callback on the createFedEx message.
static void processDestroy (const DtDestroyMsg &msg, void *usr)
 Callback on the destroyFedEx message.
static void processListFederations (const DtListFederationsMsg &msg, void *usr)
 Callback on the list federations message.
static void processJoin (const DtJoinMsg &msg, void *usr)
 Callback on the Join message.
static void processDisconnect (const DtDisconnectMsg &msg, void *usr)
 Callback on the Disconnect message.
static void processQueueFull (const DtQueueFullMsg &msg, void *usr)
 Callback on the Queue Full message.
static void processReconnect (const DtReconnectMsg &msg, void *usr)
 Callback on the Reconnect message.
static void ridRequestCb (const DtRidTestRequestMsg &msg, void *usr)
 RID File Received callback.
static bool shutdownSignalCaught ()
static void caughtShutdownSignal ()

Protected Types

enum  DtStartRtiForwarderResult { ForwarderSuccessfullyStarted, RetryStartingForwarder, ForwarderStartupFailed }
typedef std::map< unsigned
long, DtTime > 
DtConnIdToTimeMap

Protected Member Functions

 DtRtiExec (DtRIDParameters *p, DtBoost::shared_ptr< DtFilePrinter > logPrinter, bool autoExit, const DtRtiConnectionInfoDataPair &connInfo)
 Constructor.
void cleanupConstructorException ()
 Clean up before constructor throws an exception Not virtual since it is called by constructor.
virtual void rtiExecToForwarderHandshake ()
 Inform RTI Forwarder that Exec is connected, and verify that this is the ONLY Exec connected.
virtual void sendRtiExecHandshakeMsg (DtHandle destId, DtRtiExecHandshakeMsg::DtHandshakeStatus status)
 Send RTI Forwarder connection response msg.
virtual void processRtiExecHandshakeMsg (const DtRtiExecHandshakeMsg &msg)
 Process the RTI Forwarder's Handshake response.
virtual void performMulticastDiscovery (bool reliableTransportDisabled)
 Attempt to discover either the RTI Forwarder or other rtiexecs.
virtual void removeDroppedFederateConnections ()
 Force resign a federate.
virtual DtStartRtiForwarderResult startRtiForwarder (const DtRIDParameters *params)
 Starts forwarder if the exec is configured to do so.

Protected Attributes

DtConnectionMgrmyConnectionMgr
std::map< DtString, DtFedExec * > myExecByName
std::map< DtFederationHandle,
DtFedExec * > 
myExecByHandle
DtString lineOfInput
bool myHandleForDeleteComplete
bool myFedNameForDeleteComplete
DtString myFederationNameForDelete
unsigned int myHandleForDelete
bool myCreatedRtiForwarder
bool myPendingDelete
bool myPendingQuit
int myFreeFedExHandle
DtList myCreateCallbacks
DtList myDestroyCallbacks
std::list< DtTickCallbackInfomyTickCallbacks
 List of tick callbacks.
std::list
< DtTickWithExecCallbackInfo
myTickWithExecCallbacks
 List of tick callbacks with DtRtiExec reference.
std::list
< DtLogFileNameCallbackInfo
myLogFileNameCallbacks
 List of log file name update callbacks.
std::list
< DtWebServerCallbackInfo
myWebServerCallbacks
 List of log file name update callbacks.
DtClock myClock
DtRtiExecHandshakeMsg::DtHandshakeStatus myHandshakeStatus
DtTime myNextHeartbeat
DtRtiMsgForwarderSP myRtiForwarder
DtForwarderFaultManagermyFaultManager
DtMulitcastDiscoveryMgrmyMcastDiscoveryMgr
DtConnIdToTimeMap myDisconnectedFederates
 Map of dropped Federate to timestamp of drop.
DtRIDParametersmyParams
bool myAutoExit
bool myExitCommanded
 Flag indicating that an exit command was received.
DtBoost::shared_ptr
< DtFilePrinter > 
myLogPrinter
 Printer which prints output to a log file.
DtRtiConnectionInfoDataPair myConnInfo

Static Protected Attributes

static bool theShutdownSignalCaught = false
static DtRtiExecCreator theCreator = NULL

Member Typedef Documentation

typedef std::map< unsigned long, DtTime > DtRtiExec::DtConnIdToTimeMap
protected

Member Enumeration Documentation

Enumerator:
ForwarderSuccessfullyStarted 
RetryStartingForwarder 
ForwarderStartupFailed 

Constructor & Destructor Documentation

DtRtiExec::DtRtiExec ( DtRIDParameters p,
DtBoost::shared_ptr< DtFilePrinter >  logPrinter,
bool  autoExit,
const DtRtiConnectionInfoDataPair connInfo 
)
protected
DtRtiExec::~DtRtiExec ( )
virtual

Member Function Documentation

void DtRtiExec::addFedExCreatedCallback ( DtFedExCbFn  fn,
void *  usr 
)
virtual

Register a callback to be triggered whenever a new federation execution is created.

References myCreateCallbacks.

void DtRtiExec::addFedExDestroyedCallback ( DtFedExCbFn  fn,
void *  usr 
)
virtual

Register a callback to be triggered whenever an existing federation execution is destroyed.

References myDestroyCallbacks.

void DtRtiExec::addLogFileNameUpdatedCallback ( DtLogFileNameCbFn  fn,
void *  usr 
)
virtual

Register a callback to be triggered whenever the log file name for the rtiexec is updated.

References myLogFileNameCallbacks.

void DtRtiExec::addTickCallback ( DtTickCbFn  fn,
void *  usr,
DtTime  interval 
)
virtual

Register a callback to be called during tick, but only at the given interval.

References myTickCallbacks.

void DtRtiExec::addTickCallback ( DtTickWithExecCbFn  fn,
void *  usr,
DtTime  interval 
)
virtual

Register a callback to be called during tick, but only at the given interval.

For callbacks which will be passed a reference to the calling DtRtiExec.

References myTickWithExecCallbacks.

void DtRtiExec::addWebServerUpdatedCallback ( DtWebServerCbFn  fn,
void *  usr 
)
virtual

Register a callback to be triggered whenever the web server for the rtiexec is updated.

References myWebServerCallbacks.

void DtRtiExec::caughtShutdownSignal ( )
static
void DtRtiExec::checkVersion ( const DtString &  version) const
virtual

Called by the exec application to make sure that the RTI Version matches.

References DtVersion.

void DtRtiExec::cleanupConstructorException ( )
protected

Clean up before constructor throws an exception Not virtual since it is called by constructor.

References DtConnectionMgr::flush(), myConnectionMgr, myCreatedRtiForwarder, myFaultManager, and DtConnectionMgr::sendShutdownForwarderMsg().

Referenced by DtRtiExec().

DtConnectionMgr * DtRtiExec::connectMgr ( )
inline
DtRtiExec * DtRtiExec::create ( DtRIDParameters p,
DtBoost::shared_ptr< DtFilePrinter >  logPrinter,
bool  autoExit = false,
const DtRtiConnectionInfoDataPair connInfo = DtRtiConnectionInfoDataPair() 
)
static

Creates an instance of a DtRtiExec;.

References DtRtiExec(), params(), and theCreator.

Referenced by createFedEx(), DtRtiExec(), and setCreatorFunction().

DtFedExec * DtRtiExec::createFedEx ( DtConnectionMgr connMgr,
const std::vector< unsigned int > &  crcs,
const char *  fedExName,
std::string const &  timeImplName,
MAKRti::DtFomType  fedType,
const std::vector< DtString > &  fedFileName,
const DtString &  momModuleName,
int  fedExHandle,
DtRIDParameters params,
unsigned int  momModuleCrc 
)
virtual

Returns a new fed ex instance, Override this function to replace the default federation execution object.

References connectMgr(), and create().

Referenced by processCreate().

int DtRtiExec::deleteFederate ( unsigned int  handle,
const DtString &  federationName 
)
virtual
void DtRtiExec::destroyFederationByName ( const DtString &  fullFedexName,
bool  sendDestroyResponse = true,
bool  forceDestroy = false 
)
virtual

Attempt to destroy a federation.

By default, if destruction fails, a destroy response is sent. If this is being called in response to a command at the rtiexec GUI, then no response needs to be sent. If forceDestroy is set, federation is destroyed regardless of whether it has joined federates.

References DtDRExecDestroyed, DtDRExecDoesNotExist, DtDRFederatesJoined, exists(), DtFedExec::fedExHandle(), myConnectionMgr, DtFedExCallbackInfo::myData, myDestroyCallbacks, myExecByHandle, myExecByName, DtFedExCallbackInfo::myFn, DtFedExec::numFederates(), DtConnectionMgr::removeLogicalTimeFactory(), and sendDestroyResponseMsg().

Referenced by processDestroy(), removeDroppedFederateConnections(), and tick().

void DtRtiExec::enableLogging ( )
virtual

Enables logging.

References myLogFileNameCallbacks, and myLogPrinter.

void DtRtiExec::enableWebSpy ( const DtInetAddr &  webSpyIpAddr,
int  webSpyPort 
)
virtual

Sets the web spy connection status as enabled and connected.

References DtDefaultInterfaceAddr(), myWebServerCallbacks, DtRIDParameters::networkInterfaceAddr(), and params().

bool DtRtiExec::exists ( const DtString &  fedExName)
virtual

Returns true if the name fedex exists, false otherwise.

References myExecByName.

Referenced by deleteFederate(), destroyFederationByName(), processCreate(), and processJoin().

void DtRtiExec::exit ( )
virtual

Causes the rtiexec to exit.

References myExitCommanded.

DtFedExec * DtRtiExec::fedExec ( const DtString &  fedExName)

Search for a fed executive by name.

Returns NULL if none are found.

References myExecByName.

Referenced by DtRtiexecObserverForAssistant::processTimeStateEvent().

const DtFedExec * DtRtiExec::fedExec ( const DtString &  fedExName) const

References myExecByName.

const std::map< DtString, DtFedExec * > & DtRtiExec::fedExecs ( ) const

Returns a reference to the entire map of federations.

References myExecByName.

void DtRtiExec::listFederates ( )
virtual

Respond to a request to list federates through interactive input.

References myExecByName.

const DtRIDParameters & DtRtiExec::params ( ) const
inline

Returns a handle to the current RID Params.

References myParams.

Referenced by create(), enableWebSpy(), processDisconnect(), processJoin(), rtiExecToForwarderHandshake(), and sendRtiExecHandshakeMsg().

void DtRtiExec::parseDeleteCommand ( const DtString &  command,
unsigned int &  handle,
DtString &  federationName 
) const
virtual

Respond to a request to delete a federate through interactive input.

void DtRtiExec::performMulticastDiscovery ( bool  reliableTransportDisabled)
protectedvirtual
void DtRtiExec::processCreate ( const DtCreateMsg msg)
virtual
void DtRtiExec::processCreate ( const DtCreateMsg msg,
void *  usr 
)
static

Callback on the createFedEx message.

void DtRtiExec::processDestroy ( const DtDestroyMsg msg)
virtual

Called when a destroyFedEx message is received.

References destroyFederationByName(), and DtDestroyMsg::fullFedExName().

Referenced by DtRtiExec(), and ~DtRtiExec().

void DtRtiExec::processDestroy ( const DtDestroyMsg msg,
void *  usr 
)
static

Callback on the destroyFedEx message.

void DtRtiExec::processDisconnect ( const DtDisconnectMsg msg)
virtual
void DtRtiExec::processDisconnect ( const DtDisconnectMsg msg,
void *  usr 
)
static

Callback on the Disconnect message.

void DtRtiExec::processJoin ( const DtJoinMsg msg)
virtual
void DtRtiExec::processJoin ( const DtJoinMsg msg,
void *  usr 
)
static

Callback on the Join message.

void DtRtiExec::processListFederations ( const DtListFederationsMsg msg)
virtual

Called when a list federations message is received.

References DtListFederationsMsg::destinationID(), myExecByName, and sendReportFederationsMsg().

Referenced by DtRtiExec(), and ~DtRtiExec().

void DtRtiExec::processListFederations ( const DtListFederationsMsg msg,
void *  usr 
)
static

Callback on the list federations message.

void DtRtiExec::processQueueFull ( const DtQueueFullMsg msg)
virtual
void DtRtiExec::processQueueFull ( const DtQueueFullMsg msg,
void *  usr 
)
static

Callback on the Queue Full message.

int DtRtiExec::processQuit ( )

User request to quit is processed.

If there are no federations, quit is granted immediately. Otherwise, a pending quit status is set to true and the user is prompted to confirm the quit request. Return -1 if quit should be granted immediately.

References myExecByName, and myPendingQuit.

void DtRtiExec::processReconnect ( const DtReconnectMsg msg)
virtual
void DtRtiExec::processReconnect ( const DtReconnectMsg msg,
void *  usr 
)
static

Callback on the Reconnect message.

void DtRtiExec::processRtiExecHandshakeMsg ( const DtRtiExecHandshakeMsg msg,
void *  usr 
)
static

Handshake message callback.

Referenced by DtRtiExec().

void DtRtiExec::processRtiExecHandshakeMsg ( const DtRtiExecHandshakeMsg msg)
protectedvirtual
void DtRtiExec::processUpdateNotifyLevel ( DtNotifyLevelType  level)
virtual

Updates the rtiexec notify level.

void DtRtiExec::removeDroppedFederateConnections ( )
protectedvirtual
void DtRtiExec::removeFedExCreatedCallback ( DtFedExCbFn  fn,
void *  usr 
)
virtual
void DtRtiExec::removeFedExDestroyedCallback ( DtFedExCbFn  fn,
void *  usr 
)
virtual
void DtRtiExec::removeLogFileNameUpdatedCallback ( DtLogFileNameCbFn  fn,
void *  usr 
)
virtual
void DtRtiExec::removeTickCallback ( DtTickCbFn  fn,
void *  usr 
)
virtual

References myTickCallbacks.

void DtRtiExec::removeTickCallback ( DtTickWithExecCbFn  fn,
void *  usr 
)
virtual
void DtRtiExec::removeWebServerUpdatedCallback ( DtWebServerCbFn  fn,
void *  usr 
)
virtual

References myWebServerCallbacks.

void DtRtiExec::ridRequestCb ( const DtRidTestRequestMsg msg)
virtual
void DtRtiExec::ridRequestCb ( const DtRidTestRequestMsg msg,
void *  usr 
)
static

RID File Received callback.

References ridRequestCb().

void DtRtiExec::rtiExecToForwarderHandshake ( )
protectedvirtual
void DtRtiExec::run ( )
virtual
void DtRtiExec::sendCreateResponseMsg ( const unsigned long  destinationID,
DtCreateResponseFlag  flag,
MAKRti::DtString const &  errorString 
)
virtual
void DtRtiExec::sendDestroyResponseMsg ( const char *  fedExName,
DtDestroyResponseFlag  flag 
)
virtual
void DtRtiExec::sendJoinResponseMsg ( unsigned long  destinationIDValue,
unsigned short  requestID,
unsigned int  crc,
DtFederateHandle  handle,
const char *  fedName,
int  fedExHandle,
const char *  fedExName,
const DtString &  momModule,
const std::vector< DtString > &  fedFileName,
unsigned long  flags,
bool  allowNetworkTesting,
MAKRti::DtString const &  errorString,
DtJoinResponseMsg::errorCodes  errorValue = DtJoinResponseMsg::DT_NO_ERROR 
)
virtual
void DtRtiExec::sendReportFederationsMsg ( unsigned long  destId,
const std::vector< DtString > &  federationNames,
const std::vector< DtString > &  timeImplNames 
)
virtual
void DtRtiExec::sendRtiExecHandshakeMsg ( DtHandle  destId,
DtRtiExecHandshakeMsg::DtHandshakeStatus  status 
)
protectedvirtual
void DtRtiExec::setCreatorFunction ( DtRtiExecCreator  fn)
static

Call this function to set an alternate creator function With this function, users can replace this DtRtiExec with their own derived class.

References create(), DtBindCreator(), and theCreator.

void DtRtiExec::shutdownForwarderIfCreated ( )
virtual
bool DtRtiExec::shutdownSignalCaught ( )
static

References theShutdownSignalCaught.

Referenced by run().

DtRtiExec::DtStartRtiForwarderResult DtRtiExec::startRtiForwarder ( const DtRIDParameters params)
protectedvirtual
bool DtRtiExec::tick ( bool  noCallbacks = false)
virtual

Work performed here for each cycle in main loop.

Primarily processing messages and ticking each federation execution. Returns boolean: tick processed a message? If noCallbacks is true, no tick callbacks will be called

References connectMgr(), destroyFederationByName(), false, DtFedExec::fedExName(), myClock, myDisconnectedFederates, myExecByName, myMcastDiscoveryMgr, myNextHeartbeat, myParams, myTickCallbacks, myTickWithExecCallbacks, removeDroppedFederateConnections(), DtConnectionMgr::send(), DtMulitcastDiscoveryMgr::tick(), DtFedExec::tick(), and DtConnectionMgr::tick().

Referenced by run().

void DtRtiExec::wait ( DtTime  intervalInSeconds)
virtual

Wait for input or until the the given interval expires.

References connectMgr(), and DtConnectionMgr::wait().

Referenced by run().

Member Data Documentation

DtString DtRtiExec::lineOfInput
protected
bool DtRtiExec::myAutoExit
protected

Referenced by run().

DtClock DtRtiExec::myClock
protected
DtConnectionMgr* DtRtiExec::myConnectionMgr
protected
DtRtiConnectionInfoDataPair DtRtiExec::myConnInfo
protected

Referenced by startRtiForwarder().

DtList DtRtiExec::myCreateCallbacks
protected
bool DtRtiExec::myCreatedRtiForwarder
protected
DtList DtRtiExec::myDestroyCallbacks
protected
DtConnIdToTimeMap DtRtiExec::myDisconnectedFederates
protected

Map of dropped Federate to timestamp of drop.

  • If connection is not re-established before timeout, Then federate must be resigned.

Referenced by processDisconnect(), processReconnect(), removeDroppedFederateConnections(), and tick().

std::map<DtFederationHandle, DtFedExec*> DtRtiExec::myExecByHandle
protected
std::map<DtString, DtFedExec*> DtRtiExec::myExecByName
protected
bool DtRtiExec::myExitCommanded
protected

Flag indicating that an exit command was received.

Referenced by exit(), and run().

DtForwarderFaultManager* DtRtiExec::myFaultManager
protected
DtString DtRtiExec::myFederationNameForDelete
protected
bool DtRtiExec::myFedNameForDeleteComplete
protected
int DtRtiExec::myFreeFedExHandle
protected

Referenced by processCreate().

unsigned int DtRtiExec::myHandleForDelete
protected
bool DtRtiExec::myHandleForDeleteComplete
protected
DtRtiExecHandshakeMsg::DtHandshakeStatus DtRtiExec::myHandshakeStatus
protected
std::list<DtLogFileNameCallbackInfo> DtRtiExec::myLogFileNameCallbacks
protected

List of log file name update callbacks.

Referenced by addLogFileNameUpdatedCallback(), enableLogging(), and removeLogFileNameUpdatedCallback().

DtBoost::shared_ptr<DtFilePrinter> DtRtiExec::myLogPrinter
protected

Printer which prints output to a log file.

Referenced by enableLogging(), and ~DtRtiExec().

DtMulitcastDiscoveryMgr* DtRtiExec::myMcastDiscoveryMgr
protected
DtTime DtRtiExec::myNextHeartbeat
protected

Referenced by DtRtiExec(), and tick().

DtRIDParameters* DtRtiExec::myParams
protected
bool DtRtiExec::myPendingDelete
protected
bool DtRtiExec::myPendingQuit
protected

Referenced by processQuit().

DtRtiMsgForwarderSP DtRtiExec::myRtiForwarder
protected
std::list<DtTickCallbackInfo> DtRtiExec::myTickCallbacks
protected

List of tick callbacks.

Referenced by addTickCallback(), removeTickCallback(), and tick().

std::list<DtTickWithExecCallbackInfo> DtRtiExec::myTickWithExecCallbacks
protected

List of tick callbacks with DtRtiExec reference.

Referenced by addTickCallback(), removeTickCallback(), and tick().

std::list<DtWebServerCallbackInfo> DtRtiExec::myWebServerCallbacks
protected

List of log file name update callbacks.

Referenced by addWebServerUpdatedCallback(), enableWebSpy(), and removeWebServerUpdatedCallback().

DtRtiExecCreator DtRtiExec::theCreator = NULL
staticprotected

Referenced by create(), and setCreatorFunction().

bool DtRtiExec::theShutdownSignalCaught = false
staticprotected

Referenced by shutdownSignalCaught().


The documentation for this class was generated from the following files:

Document ID: Generated on Tue May 7 16:26:47 EDT 2013 from SVN revision 126903
Copyright © 2005-2013 VT MÄK Inc. All Rights Reserved (www.mak.com)