![]() |
MAK RTIspy API Documentation for HLA 1.3
|
This class manages the RTI's start-up configuration using both MTL variables and functions. More...
Collaboration diagram for DtRIDParameters:Classes | |
| class | DtFloatRidParameter |
| Float based Rid parameter. More... | |
| class | DtIntRidParameter |
| Int based Rid parameter. More... | |
| class | DtRidParameter |
| Generic Rid information. More... | |
| class | DtStringRidParameter |
| String based Rid parameter. More... | |
Public Types | |
| enum | DtInconsistentRidReaction { DtInconsistentRidDoNothing = 0, DtInconsistentRidAutoCorrect, DtInconsistentRidThrowException } |
| 0 == no RID consistency checking. More... | |
| enum | DtAsynchronousIOModeEnum { DtSynchronousMode = 0, DtAsynchronousMode, DtAsynchronousProcessMessage, DtAsynchronousCallbacks } |
| 0 == no Async IO 1 == Asynchronous IO, (same as old parameter RTI_asynchronousIO ) 2 == Asynchronous IO + Asynchronous Message Processing (same as old parameter RTI_asynchronousMessageProcessing) 3 == Asynchronous IO + Asynchronous Callbacks ( same as old parameter RTI_asynchronousCallbacks ) More... | |
| enum | DtFomDataTransportTypeControlEnum { DtFomTransportTypeUseFomSettings = 0, DtFomTransportTypeUseBestEffort, DtFomTransportTypeUseReliable } |
| 0 == ( Default ) FOM data is sent either best effort or reliable based on FOM settings. More... | |
| enum | DtLrcMinidumperLevelEnum { DtLrcMinidumperLevelNotEnabled = 0, DtLrcMinidumperLevelEnabled = 1, DtLrcMinidumperLevelEnabledNoPrompt = 2, DtLrcMinidumperLevelSilentExit = 3 } |
| 0 == ( Default ) Minidumper is not enabled 1 == Minidumper will prompt the user to generate a .dmp file 2 == Minidumper will generate .dmp file (no prompt) 3 == No .dmp is generated, and program will exit silently More... | |
| enum | DtRidFileSearchStatus { DtUnInitialized = 0, DtRidFileFound, DtCreationArgRidFileNotFound, DtRtiRidFileAndRtiConfigFileNotFound, DtRtiRidFileFileNotFound, DtRtiConfigFileNotFound, DtBadRelativePath, DtNoRidFileSpecified } |
| Status of RID file search. More... | |
| typedef std::vector < DtDMFilterStruct > | DtDMFilterList |
| typedef std::vector < MAKRti::DtString > | DtStringList |
| typedef std::vector < MAKRti::DtInetAddr > | DtInetAddrList |
| typedef std::set < DtInetAddrAndPort > | DtInetAddrAndPortSet |
| typedef std::map < MAKRti::DtString, DtIntRidParameter > | IntParameterMap |
| typedef std::map < MAKRti::DtString, DtFloatRidParameter > | FloatParameterMap |
| typedef std::map < MAKRti::DtString, DtStringRidParameter > | StringParameterMap |
Public Member Functions | |
| DtRIDParameters () | |
| Default constructor for use as a simple model. | |
| DtRIDParameters (const MAKRti::DtFilename &fileIn) | |
| Default constructor for use as a simple model from an mtl file on disk. | |
| DtRIDParameters (int highestNotifyLevelDuringInitialization, const std::vector< MAKRti::DtString > *const ridExpressions, bool enableRtiExec) | |
| CTOR. | |
| DtRIDParameters (const MAKRti::DtString &expression) | |
| CTOR. | |
| DtRIDParameters (const DtRIDParameters &orig) | |
| Copy CTOR. | |
| virtual | ~DtRIDParameters () |
| destructor | |
| virtual MAKRti::DtString | compareRIDParameters (DtRIDParameters *ridParam) const |
| Compare the given RID with this one. | |
| virtual void | compareRIDParameters (DtRIDParameters *ridParam, std::map< MAKRti::DtString, int > &intMap, std::map< MAKRti::DtString, float > &floatMap, std::map< MAKRti::DtString, MAKRti::DtString > &stringMap) const |
| Compare the given RID with this one. | |
| virtual MAKRti::DtString | ridsToConsistencyCheck () |
| Consistency checking is performed on a subset of RID parameters Returns a string containing the names of those parameters that should be consistency checked. | |
| virtual void | toLispString (MAKRti::DtString &lispString, bool versionHeader=false) const |
| Converts the RID parameters to a lisp string If versionHeader is set to true, the lisp will start with a comment containing the RTI version. | |
| virtual bool | ridMapFromLispString (const MAKRti::DtString &inputString, std::map< MAKRti::DtString, int > &intMap, std::map< MAKRti::DtString, float > &floatMap, std::map< MAKRti::DtString, MAKRti::DtString > &stringMap) const |
| Populate the maps with rid parameters (names and values) for each parameter name found in the given input string. | |
| virtual void | applySpecifiedRidParameters (const MAKRti::DtString &expression) |
| Apply the RID initialization expression to this RID. | |
| const StringParameterMap & | stringRidParameters () const |
| Return the map of string parameters. | |
| const IntParameterMap & | intRidParameters () const |
| Return the map of integer parameters. | |
| const FloatParameterMap & | floatRidParameters () const |
| Return the map of float parameters. | |
| bool | isStringParameter (const MAKRti::DtString &) const |
| Does the given parameter have a string value? | |
| bool | isIntParameter (const MAKRti::DtString &) const |
| Does the given parameter have an integer value? | |
| bool | isFloatParameter (const MAKRti::DtString &) const |
| Does the given parameter have a float value? | |
| virtual bool | getParameter (const MAKRti::DtString &name, MAKRti::DtString &value, StringParameterMap::const_iterator &iter) const |
| Get the string value for the given parameter name Returns boolean: got value successfully? | |
| virtual bool | getParameter (const MAKRti::DtString &name, MAKRti::DtString &value) const |
| virtual bool | getParameter (const MAKRti::DtString &name, int &value, IntParameterMap::const_iterator &iter) const |
| Get the integer value for the given parameter name Returns boolean: got value successfully? | |
| virtual bool | getParameter (const MAKRti::DtString &name, int &value) const |
| virtual bool | getParameter (const MAKRti::DtString &name, float &value, FloatParameterMap::const_iterator &iter) const |
| Get the float value for the given parameter name Returns boolean: got value successfully? | |
| virtual bool | getParameter (const MAKRti::DtString &name, float &value) const |
| bool | setParameter (const MAKRti::DtString &name, const MAKRti::DtString &val) |
| Set the string value for the given parameter name Returns boolean: set value successfully? | |
| bool | setParameter (const MAKRti::DtString &name, int val) |
| Set the integer value for the given parameter name Returns boolean: set value successfully? | |
| bool | setParameter (const MAKRti::DtString &name, float val) |
| Set the float value for the given parameter name Returns boolean: set value successfully? | |
| const MAKRti::DtMtlEnvironment & | mtlEnvironment () const |
| returns mtl environment | |
| const MAKRti::DtFilename & | ridName () const |
| Returns the RID file name. | |
| const MAKRti::DtFilename | forwarderRoutesFile () const |
| Returns the forwarder routes file name. | |
| void | setForwarderRoutesFile (const MAKRti::DtFilename &file) |
| Set the forwarder routes file name. | |
| MAKRti::DtInetAddr | destAddr () const |
| Get the destination address as a network address (versus string representation). | |
| MAKRti::DtInetAddr | udpNetworkInterfaceAddr () const |
| Get the UDP multicast network interface address as a network address (versus string representation). | |
| MAKRti::DtString | udpNetworkInterfaceAddrString () const |
| Get UDP multicast network interface address string. | |
| void | setUdpNetworkInterfaceAddr (const MAKRti::DtString &networkIFace) |
| Set UDP multicast network interface address. | |
| MAKRti::DtInetAddr | tcpNetworkInterfaceAddr () const |
| Get the TCP multicast network interface address as a network address (versus string representation). | |
| MAKRti::DtString | tcpNetworkInterfaceAddrString () const |
| Get TCP multicast network interface address string. | |
| void | setTcpNetworkInterfaceAddr (const MAKRti::DtString &networkIFace) |
| Set TCP multicast network interface address. | |
| MAKRti::DtString | tcpForwarderAddrString () const |
| get tcpForwarderAddr String | |
| void | setTcpForwarderAddr (const MAKRti::DtString &addr) |
| set tcpForwarder Addr String | |
| MAKRti::DtInetAddr | tcpForwarderAddr () const |
| Get the TCP Forwarder address as a network address (versus string representation). | |
| MAKRti::DtInetAddr | minChannel () const |
| Get the minimum DDM multicast address as a network address (versus string representation). | |
| MAKRti::DtInetAddr | maxChannel () const |
| Get the Maximum DDM multicast address as a network address (versus string representation). | |
| MAKRti::DtInetAddr | mcastDiscoveryAddr () const |
| Get the multicast discovery address as a network address (versus string representation). | |
| DtFixedGridConfiguration * | fixedGridConfiguration () const |
| Get the DDM fixed grid configuration Returns NULL if not initialized. | |
| MAKRti::DtInetAddr | DMMulticastGroupInterface (MAKRti::DtInetAddr multicastGroup) const |
| Get the network interface for the specified DM Multicast address (returns networkInterfaceAddr() if no interface was specified) | |
| bool | useGroupSocket () const |
| Returns true if we should use a group socket; 0 otherwise. | |
| bool | useDMFiltering () const |
| Returns true if we should use DM filtering. | |
| bool | isPreconfiguredRid () const |
| Returns the name of the RID configuration if this RID is preconfigured. | |
| MAKRti::DtString | getRidConfigurationName () const |
| Returns the name of the RID configuration if this RID is preconfigured. | |
| MAKRti::DtFilename | getFullPathToRidFile () const |
| returns full working path to rid file, either absolutely or relatively. | |
| const std::string & | getCreationFileName () const |
| returns reference to member myCreationFileName. | |
| const MAKRti::DtString & | getCreationLispExprs () const |
| returns reference to member myCreationLispExprs | |
| MAKRti::DtFilename | saveRestoreDirectoryPath () |
| Return the directory with an appended path separator. | |
| int | maxObjectsPerFederate () const |
| Return maximum number of objects allowed in a federation. | |
| void | setMaxObjectsPerFederate (int val) |
| Set maximum number of objects allowed in a federation. | |
| int | transmitLaggardLBTS () const |
| Return the indicator to transmit laggard LBTS value. | |
| void | setTransmitLaggardLBTS (int yesNo) |
| Set the indicator to transmit laggard LBTS value. | |
| DtInconsistentRidReaction | ridConsistencyChecking () const |
| Returns value of RID consistency checking variable. | |
| void | setRidConsistencyChecking (DtInconsistentRidReaction value) |
| Set value of RID consistency checking variable. | |
| DtAsynchronousIOModeEnum | processingModel () const |
| Return processing mode value. | |
| void | setProcessingModel (DtAsynchronousIOModeEnum value) |
| Set processing mode value. | |
| const DtDMFilterList & | objectMulticastDefinitions () const |
| Return the object class definitions for DM mulitcast filtering. | |
| const DtDMFilterList & | interactionMulticastDefinitions () const |
| Return the interaction class definitions for DM mulitcast filtering. | |
| const DtStringList & | createFomModules () const |
| Return the list of create FOM modules. | |
| const DtStringList & | joinFomModules () const |
| Return the names of join FOM modules. | |
| const DtInetAddrList & | destinationAddrs () const |
| Return the list of additional destination addresses. | |
| const DtInetAddrAndPortSet & | forwarderGroupAddrs () const |
| Return the list of forwarder group addresses. | |
| unsigned int | forwarderGroupSize () |
| Return the size of the forwarder group list. | |
| bool | useRoutesFile () const |
| Set/Get routes file control. | |
| void | setUseRoutesFile (bool fileShouldBeUsed) |
| void | clearAncillaryForwarderGroupAddrs () |
| Clear the list of ancillary forwarder group addresses. | |
| const DtUpdateNameRateMap & | updateRates () const |
| Return the map between update rate names and values. | |
| const std::vector < DtUpdateRateSubscriptionStruct > & | updateRateSubscriptions () const |
| Return the update rate subscription definitions. | |
| void | fullyCompliantParameters (std::map< MAKRti::DtString, int > ¶meters) const |
| Caller passes fullyCompliantParameters an empty map which will be populated with the compliance parameters and their compliant settings. | |
| bool | isFullyCompliant () const |
| Is this RID Params object fully compliant? | |
| bool | requiredComplianceParameter (const MAKRti::DtString ¶meter) const |
| Is this parameter required for compliance. | |
| int | compliantSettingForParameter (const MAKRti::DtString ¶meter) const |
| What is the required compliance setting for this parameter. | |
| void | forceParametersToCompliance () |
| Forces all parameters required for compliance to their compliant settings. | |
| void | saveOriginalCompliantSettings () |
| Saves the current settings of the compliance parameters as the original settings. | |
| void | revertComplianceParametersToOriginalSettings () |
| Forces all compliant parameters back to their original values. | |
| void | sanityCheckRIDParameters () |
| Some RID parameters have dependent settings. | |
| void | sanityCheckReliableConnRIDParameters () |
| Specific sanity checks for reliable connection parameters. | |
| void | printParameters () |
| Prints all RID parameters. | |
| void | applyParameterOverrides () |
| Applies the parameter overrides set with ::overrideRidParameters Non-virtual (Called from CTOR). | |
| void | makeLogDirectory () const |
| This will make the directory for the RID parameter RTI_logFileDirectory if necessary. | |
| int | enableBigMessage () const |
| Deprecated: Declaring as a private rid variable. | |
| int | asynchronousIO () const |
| Deprecated: Declaring as a private rid variable. | |
| int | asynchronousCallbacks () const |
| Deprecated: Declaring as a private rid variable. | |
| int | asynchronousProcessMessage () const |
| Deprecated: Declaring as a private rid variable. | |
| MAKRti::DtString | mcastDevAddrString () const |
| Deprecated: Declaring as a private rid variable. | |
| void | sanityCheckAddressFamily () |
| Sanity checks to ensure all IP addresses use the same address family. | |
| void | sanityCheckTcpAddressFamily () |
| Sanity checks to ensure all IP addresses use the same address family. | |
| void | sanityCheckUdpAddressFamily () |
| Sanity checks to ensure all IP addresses use the same address family. | |
Static Public Member Functions | |
| static void | overrideRidParameters (const std::map< std::string, std::string > ¶ms) |
| Sets the the RID parameters to be overridden after the RID file is loaded. | |
| static int | maxObjectsPerFederateLimit () |
| The maximum number of simultaneious federates in a federation execution. | |
| static int | maxNumFederatesLimit () |
| The maximum number of objects a single federate may register. | |
| static const int | numBitsInObjectInstanceHandle () |
| Number of bits used to represent an object instance handle. | |
Protected Types | |
| typedef std::map < MAKRti::DtString, MAKRti::DtString > | ParameterOverridesMap |
| Overridden RID parameters. | |
Protected Member Functions | |
| void | registerParameters () |
| Registers all MTL parameters. | |
| void | loadLispFile (const MAKRti::DtFilename &fileName) |
| Loads the RID file. | |
| void | loadLispExpressions () |
| Loads the expressions for function rid parameters Non-virtual (Called from CTOR). | |
| MAKRti::DtMtlEnvironment & | mtlEnvironment () |
| returns mtl environment | |
| virtual void | accessorError (const char *parameterName) const |
| Handle error when accessor fails. | |
| virtual void | mutatorError (const char *parameterName) const |
| Handle error when mutator fails. | |
| void | copyRidParameters (const DtRIDParameters &orig) |
| copyRidParameters is used by the DtRIDParameters copy constructor to deep copy the DtRidParameter objects. | |
| void | destroyAllRidParameters () |
| destroy all RidParameter objects. | |
| void | destroyRidParameter (const MAKRti::DtString &name) |
| destroy a single RidParameter object. | |
| MAKRti::DtFilename | findLispFile () |
| lookup the RID file base on args passed to createRTIAmbassador (1516 only) working directory and env. | |
| bool | extractRidFileName (const MAKRti::DtString &arg) |
| Parses string for RID file name directive (must be at beginning of string). | |
| void | extractRidExpressions (const std::vector< MAKRti::DtString > &ridExpressions) |
| Parses supplied strings and extracts RID expressions. | |
| void | buildDmFilterList (bool forObjectsElseInteractions) |
| read all DM filters for Objects or Interactions from lisp env. | |
| void | buildFomModulesList () |
| read all additional Fom Modules specified from lisp env. | |
| bool | buildDdmGrid (const MAKRti::DtFilename &gridConfigFilename) |
| Read and process DDM fixed grid definition Returns false when gridConfigFilename not found. | |
| void | initializeParameters (bool forceEnableRtiExec, const MAKRti::DtString &expression, const MAKRti::DtFilename &fileName) |
| Used to initialize RID parameters from disk, or from the given expression. | |
| void | checkUseRtiExec (bool forceEnableRtiExec) |
| If forceEnableRtiExec is enabled ( we were instantiated from an ExecThread ) then make sure useRtiExec is set. | |
| void | applyAmbassadorCreationArguments () |
| rti1516::createRtiAmbassador has a std::set<wstring> argument which can be used to apply lisp changes to the rid as if the changes were in the rid file itself. | |
| void | initializeFixedGrid () |
| Build and print the Fixed DDM Grid. | |
| void | populateRidGroups () |
| Populate the compliant, federation, LRC, etc. lists. | |
| void | initializeDestAddrs () |
| Build list of Dest Addrs. | |
| void | initializeForwarderGroups () |
| Build list of Forwarder Groups. | |
| void | initializeUpdateRates () |
| Build update Rates table. | |
| void | verifyPortsAreUnique () const |
| Check and validate uniqueness of all ports in the RID. | |
| void | verifyIpAddresses () const |
| Check all IP addresses in RID for validity. Throws if they are not. | |
| void | verifyIpAddress (const MAKRti::DtString &ip, const MAKRti::DtString &name=MAKRti::DtString::nullString()) const |
| Check the validity of a single IP address. Throws if invalid. | |
| virtual int * | createRidParameter (const MAKRti::DtString &label, const MAKRti::DtString &name, const MAKRti::DtString &toolTip, const MAKRti::DtString &parent, int defaultValue, bool editable, const MAKRti::DtString &range) |
| createRidParameter will take and store all of the elements required of a DtRidParameter object, in three forms (int, MAKRti::DtString, and float). | |
| virtual MAKRti::DtString * | createRidParameter (const MAKRti::DtString &label, const MAKRti::DtString &name, const MAKRti::DtString &toolTip, const MAKRti::DtString &parent, const MAKRti::DtString &defaultValue, bool editable, const MAKRti::DtString &range) |
| createRidParameter will take and store all of the elements required of a DtRidParameter object, in three forms (int, MAKRti::DtString, and float). | |
| virtual float * | createRidParameter (const MAKRti::DtString &label, const MAKRti::DtString &name, const MAKRti::DtString &toolTip, const MAKRti::DtString &parent, float defaultValue, bool editable, const MAKRti::DtString &range) |
| createRidParameter will take and store all of the elements required of a DtRidParameter object, in three forms (int, MAKRti::DtString, and float). | |
Protected Attributes | |
| MAKRti::DtMtlEnvironment * | myEnv |
| The MTL environment used to process RID parameters. | |
| DtInetAddrList | myDestAddr |
| Group socket configuration. | |
| DtInetAddrAndPortSet | myForwarderGroupAddrs |
| The forwarder group addresses. | |
| DtDMFilterList | myIntMulticastDefinition |
| DM object class configuration. | |
| DtDMFilterList | myObjMulticastDefinition |
| DM interaction class configuration. | |
| DtStringList | myPluginNames |
| Plugin names configuration. | |
| MAKRti::DtFilename | myName |
| The RID file name. | |
| MAKRti::DtFilename | myForwarderRoutesFile |
| The forwarder routes file name. | |
| bool | myIsPreconfiguredRidFlag |
| Flag indicating whether the RID configuration is preconfigured. | |
| MAKRti::DtString | myPreconfiguredRidName |
| Preconfigured RID configuration name. | |
| MAKRti::DtFilename | myFullPathToRidFile |
| The path to the loaded file. | |
| DtRidFileSearchStatus | myRidFileSearchStatus |
| The status of the file search of the RID file. | |
| MAKRti::DtString | myCreationLispExprs |
| The expressions found in the creation arguments (if any) | |
| std::string | myCreationFileName |
| The RID file name found in the creation arguments (if present) | |
| DtStringList | myCreateFedExFomModules |
| The list of create FOM modules. | |
| DtStringList | myJoinFedExFomModules |
| The list of join FOM modules. | |
| DtFixedGridConfiguration * | myFixedGridConfiguration |
| Fixed grid configuration. | |
| DtUpdateNameRateMap | myUpdateRates |
| Pre-Evolved way to set the list of (name rate) Map from update rate name to value. | |
| std::vector < DtUpdateRateSubscriptionStruct > | myUpdateRateSubscriptions |
| Update rate subscriptions. | |
| FloatParameterMap | myFloatRidParameterDefaults |
| The default values for float RID parameters. | |
| IntParameterMap | myIntRidParameterDefaults |
| The default values for integer RID parameters. | |
| StringParameterMap | myStringRidParameterDefaults |
| The default values for string RID parameters. | |
| std::map< MAKRti::DtString, std::pair< int, int > > | myFullyCompliantParameters |
| The list of parameters that effect compliance, their fully compliant setting, and their original setting (as read from the RID file) | |
| bool | myUseRoutesFile |
| Controls whether routes file should be used (set internally) | |
| bool | theForwarderRoutesFileRidNameInitialized |
| bool | theProcessingModelRidNameInitialized |
| bool | theRidConsistencyCheckingRidNameInitialized |
| bool | theMaxObjectsPerFederateRidNameInitialized |
| bool | theTransmitLaggardLBTSRidNameInitialized |
| bool | theTcpForwarderAddrRidNameInitialized |
| bool | theUdpNetworkInterfaceAddrRidNameInitialized |
| bool | theTcpNetworkInterfaceAddrRidNameInitialized |
| int | RTI_maxObjectsPerFederate |
| Deprecated RID parameters. | |
| int | RTI_transmitLaggardLBTS |
| Deprecated RID parameters. | |
| int | RTI_enableBigMessage |
| Deprecated RID parameters. | |
| int | RTI_asynchronousIO |
| Deprecated RID parameters. | |
| int | RTI_asynchronousProcessMessage |
| Deprecated RID parameters. | |
| int | RTI_asynchronousCallbacks |
| Deprecated RID parameters. | |
| MAKRti::DtString | RTI_mcastDevAddrString |
| Deprecated RID parameters. | |
Static Protected Attributes | |
| static const int | theMaxObjectsPerFederateLimit |
| The maximum number of simultaneious federates in a federation execution. | |
| static const int | theMaxNumFederatesLimit |
| The maximum number of objects a single federate may register. | |
| static ParameterOverridesMap | theOverrideParameters |
| static const int | theCompliantUseRtiExec |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantInternalMsgReliableWhenUsingRtiexec |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantFomDataTransportTypeControl |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantTimeMgmt |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantDataDistMgmt |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantMomServiceAvailable |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantMomFederateUpdateInterval |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantStrictFomChecking |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantCheckFlag |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantEnableHlaObjectNamePrefix |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantSendDiscoveredClass |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantExtend13and1516interop |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantProcessUnknownUpdatesForDiscovery |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantEnableNameReservation |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantEnableSaveRestoreWhenUsingRtiexec |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantFomModuleMerging |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantFomModuleSorting |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantDistributeFedFile |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantPreferRidToFedSwitchTable |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantEnableUpdateRateReduction |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantThrowExceptionCallNotAllowedFromWithinCallback |
| The parameter values that make configuration compliant. | |
| static const int | theResignResponseEnabled |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantUse32BitsForValueSize |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantDualTransmitFirstInteractionRegions |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantStrictHLA1516eAttributeOwnershipUnavailableCallback |
| The parameter values that make configuration compliant. | |
| static const int | theCompliantNextEventRequestAndRetractServiceEnabled |
| The parameter values that make configuration compliant. | |
| static const MAKRti::DtString | theOptionalServicesGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theFaultToleranceGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theMessageThrottlingGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theAdvanceConnectionGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theHlaGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theDiagnosticGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theAssistantGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theBundlingGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theAdvancedNetworkingGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theAdvisoriesGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theAsynchGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theCommunicationsGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theDdmGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theFomGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theForwarderGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theLicensingGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theMomGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theMulticastDiscoveryGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theNameReservationGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theRtiSpyGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theSaveRestoreGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theServiceImplGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | theSharedMemoryGroupName |
| The strings that represent the RID parameter groups RID Group names. | |
| static const MAKRti::DtString | thePreferRidToFedSwitchTableName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theAutoProvideSwitchName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theConveyRegionDesignatorSwitchName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theConveyProducingFederateSwitchName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theAttributeScopeAdvisorySwitchName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theAttributeRelevanceAdvisorySwitchName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theObjectClassRelevanceAdvisorySwitchName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theInteractionRelevanceAdvisorySwitchName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theServiceReportingSwitchName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theExceptionReportingSwitchName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDelaySubscriptionEvaluationSwitchName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theAddressDelayRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theAutoProvideDelayRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theAllProvideUpdateRequestsDelayedRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theBestEffortSendRetriesRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theBestEffortSendRetryWaitUsecRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theCatchFedAmbExceptionsRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theCheckFlagRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theConfigureConnectionWithRidRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theConveyOnlyAvailableDimensionsRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theCrcCheckFedFileRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDataDistMgmtRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDdmFixedGridFilenameRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDdmFixedGridRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDefaultTimeImplementationRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDefaultFedFileRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDeleteOrphansRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDeprecatedAsynchronousIORidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDeprecatedEnableBigMessageRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDeprecatedAsynchronousProcessMessageRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDeprecatedAsynchronousCallbacksRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDestAddrStringRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDetachNotifyLevelFromStdOutRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDisableUnlicensedForTwoRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDiscoveryMsgBundlingDelayRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDistributedForwarderPortRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDistributedUdpForwarderModeRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDistributeFedFileAsynchronouslyRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDistributeFedFileRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theFullFedFileDistributionName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDualTransmitFirstInteractionRegionsRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDumpFedRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDumpRidRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableBestEffortSendRetryRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theAutomaticNameReserveEnabledRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableCheckVersionRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableFederateHeartbeatRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableFedexMsgRoutingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableFomBackwardsCompatibilityRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableHlaObjectNamePrefixRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableMessageThrottlingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableNameReservationRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableLRCNetworkStatisticsMonitoringRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableNetworkTestingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnablePacketBundlingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableSaveRestoreWhenUsingRtiexecRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableSharedMemoryExecEventLogRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableTcpCompressionRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableTcpSmartForwardingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableUdpCompressionRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableUdpSmartForwardingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableUpdateRateReductionRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theExecMcastDiscoveryDelayRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theExtend13and1516interopRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theFederateHeartbeatIntervalRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theFederateReconnectPauseRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theFederateTimeoutIntervalRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theFlushTimeoutIntervalRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theFomDataTransportTypeControlRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theFomModuleMergingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theFomModuleSortingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theForceFullComplianceRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theForceUnlicensedForTwoRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theForwarderRoutesFileRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theForwardingDelayRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theImplicitDdmParamsFileRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theInternalMsgReliableWhenUsingRtiexecRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theInternalMsgSmartForwardingWhenUsingRtiexecRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theIOPeriodRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theLogFileDirectoryName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTickWaitPeriodRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theLogFileNameRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theLrcMcastDiscoveryDelayRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMaxChannelAddrRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMaxForwarderQueueRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMaxIOCountRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMaxIOQueueRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theIOQueueIndicatorRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMaxObjectsPerFederateRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMaxNumFederatesRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMaxUdpPacketSizeRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDeprecatedMcastDevAddrStringRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMcastDiscoveryAddrStringRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMcastDiscoveryEnabledRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMcastDiscoveryPortRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMcastDiscoveryTriesRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMcastTtlRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMinChannelAddrRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMomExceptionLoggingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMomFederateUpdateIntervalRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMomModuleExtensionFileNameRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMomServiceAvailableRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theUdpNetworkInterfaceAddrRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTcpNetworkInterfaceAddrRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theNotifyLevelRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | thePacketBundlingSizeRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | thePreferLocalFomModulesRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theProcessingModelRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theProcessUnknownUpdatesForDiscoveryRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theReceiveToleranceRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theReconnectEnabledRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theResignResponseEnabledRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theResponseIntervalRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theReuseLogFileRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theReuseReleasedObjectHandlesRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theRouteToAllByDefaultRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theRidConsistencyCheckingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theRtiExecLogFileNameRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theRtiExecPerformsLicensingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theRtiExecReconnectPauseRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theRtiForwarderLogFileNameRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSaveRestoreDirectoryRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSaveRestoreTimeoutRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSaveTransientMessagesRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSendDiscoveredClassRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSharedMemExecLogFileNameRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSharedMemoryMgrMaxWaitRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSharedMemoryModeRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSharedMemoryNameRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSharedMemoryQueueLengthRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSingleCallbackPerTickRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSocketReceiveBufferSizeRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSmartForwardingLevelRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theSocketSendBufferSizeRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theStrictFomCheckingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theStrictNameReservationRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theStrictHLA1516eAttributeOwnershipUnavailableCallbackRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theWaitIOPeriodForBundlingRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTcpBufferSizeRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTcpCompressionLevelRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTcpForwarderAddrRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTcpNoDelayRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theThrowExceptionForDisabledServiceRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theThrowExceptionOnConcurrentAccessRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theThrowExceptionCallNotAllowedFromWithinCallbackRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theEnableWarningsForDisabledServicesRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTickFavorsNetworkRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTimeMgmtRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTransmitDelayRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTransmitLaggardLBTSRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTransmitRateRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theUdpCompressionLevelRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theUdpPortRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTcpPortRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theUse32BitsForValueSizeRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theUseBusyWaitForTickMinMaxRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theUseRandomNumberForFedHandleRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theUseRtiExecRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMomVerboseLevelRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theNextEventRequestAndRetractServiceEnabledRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theTestConnectionThresholdRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | thePeerForwarderReconnectNumberOfTriesRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | thePeerForwarderReconnectDelayRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theLrcMinidumperLevelRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theMomEvokeCallbackObserverEnabledRidName |
| The strings that represent the RID parameter groups RID Parameter names. | |
| static const MAKRti::DtString | theDefaultIpv4DestAddr |
| Default destination address strings for IPv4 and IPv6. | |
| static const MAKRti::DtString | theDefaultIpv6DestAddr |
| Default destination address strings for IPv4 and IPv6. | |
| static const MAKRti::DtString | theDefaultIpv4MinChannelAddr |
| DDM channel addresses to be used if none are specified in the RID. | |
| static const MAKRti::DtString | theDefaultIpv4MaxChannelAddr |
| DDM channel addresses to be used if none are specified in the RID. | |
| static const MAKRti::DtString | theDefaultIpv6MinChannelAddr |
| DDM channel addresses to be used if none are specified in the RID. | |
| static const MAKRti::DtString | theDefaultIpv6MaxChannelAddr |
| DDM channel addresses to be used if none are specified in the RID. | |
| static const MAKRti::DtString | theUseTheDefaultChannelAddrStr |
| DDM channel addresses to be used if none are specified in the RID. | |
Preconfigured RID Accessors. | |
| typedef std::map < MAKRti::DtString, DtRIDParameters > | PreconfiguredRidMap |
| Returns a const reference to the map of preconfigured RIDs. | |
| static const PreconfiguredRidMap & | preconfiguredRids () |
| Returns a const reference to the map of preconfigured RIDs. | |
| static const DtRIDParameters * | preconfiguredRid (const MAKRti::DtString &name) |
| Returns the preconfigured RID with the given name. | |
| autoProvideSwitch | |
| RID Parameters Declarations. | |
| setAutoProvideSwitch | conveyProducingFederateSwitch |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch | attributeRelevanceAdvisorySwitch |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch | interactionRelevanceAdvisorySwitch |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch | exceptionReportingSwitch |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch | addressDelay |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay | allProvideUpdateRequestsDelayed |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed | bestEffortSendRetryWaitUsec |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec | errorChecking |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking | crcCheckFedFile |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile | ddmFixedGridFilename |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename | defaultTimeImplementation |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation | deleteOrphans |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans | detachNotifyLevelFromStdOut |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut | discoveryMsgBundlingDelay |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay | distributedUdpForwarderMode |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode | distributeFedFile |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile | dualTransmitFirstInteractionRegions |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions | dumpRid |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid | enableBestEffortSendRetry |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry | enableFederateHeartbeat |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat | enableFomBackwardsCompatibility |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility | enableMessageThrottling |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling | lrcNetworkStatisticsMonitoringEnabled |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled | enablePacketBundling |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling | enableSharedMemoryExecEventLog |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog | isTcpSmartForwardingEnabled |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled | isUdpSmartForwardingEnabled |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled | execMcastDiscoveryDelay |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay | federateHeartbeatInterval |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval | federateTimeoutInterval |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval | fomDataTransportTypeControl |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl | fomModuleSorting |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting | forceUnlicensedForTwo |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo | implicitDdmParamsFile |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo setImplicitDdmParamsFile | internalMsgSmartForwardingWhenUsingRtiexec |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo setImplicitDdmParamsFile setInternalMsgSmartForwardingWhenUsingRtiexec | logFileDirectory |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo setImplicitDdmParamsFile setInternalMsgSmartForwardingWhenUsingRtiexec | setLogFileDirectoryName |
| RID Parameters Declarations. | |
| logFileName | |
| RID Parameters Declarations. | |
| setLogFileName | maxChannelAddr |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr | maxIOCount |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount | ioQueueIndicator |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator | maxUdpPacketSize |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize | mcastDiscoveryEnabled |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled | mcastDiscoveryTries |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries | minChannelAddr |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr | momFederateUpdateInterval |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval | momServiceAvailable |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable | packetBundlingSize |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize | processUnknownUpdatesForDiscovery |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery | reconnectEnabled |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled | responseInterval |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval | reuseReleasedObjectHandles |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles | rtiExecLogFileName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName | rtiExecReconnectPause |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause | saveRestoreDirectory |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory | saveTransientMessages |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages | sharedMemExecLogFileName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName | useSharedMem |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode | sharedMemLength |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength | socketReceiveBufferSize |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize | socketSendBufferSize |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize | strictNameReservation |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation | waitIOPeriodForBundling |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling | tcpCompressionLevel |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel | throwExceptionForDisabledService |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService | throwExceptionCallNotAllowedFromWithinCallback |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback | tickFavorsNetwork |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork | transmitDelay |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay | udpCompressionLevel |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel | tcpPort |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort | useBusyWaitForTickMinMax |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax | useRtiExec |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec | momVerboseLevel |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel | testConnectionThreshold |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel setTestConnectionThreshold | peerForwarderReconnectDelay |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel setTestConnectionThreshold setPeerForwarderReconnectDelay | momEvokeCallbackObserverEnabled |
| RID Parameters Declarations. | |
| DtDECLARE_BOOL_ACCESSOR_MUTATOR (thePreferRidToFedSwitchTableName, preferRidToFedSwitchTable, setPreferRidToFedSwitchTable) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theAutoProvideSwitchName | |
| RID Parameters Declarations. | |
| setAutoProvideSwitch | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theConveyRegionDesignatorSwitchName, conveyRegionDesignatorSwitch, setConveyRegionDesignatorSwitch) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theConveyProducingFederateSwitchName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theAttributeScopeAdvisorySwitchName, attributeScopeAdvisorySwitch, setAttributeScopeAdvisorySwitch) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theAttributeRelevanceAdvisorySwitchName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theObjectClassRelevanceAdvisorySwitchName, objectClassRelevanceAdvisorySwitch, setObjectClassRelevanceAdvisorySwitch) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theInteractionRelevanceAdvisorySwitchName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theServiceReportingSwitchName, serviceReportingSwitch, setServiceReportingSwitch) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theExceptionReportingSwitchName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theDelaySubscriptionEvaluationSwitchName, delaySubscriptionEvaluationSwitch, setDelaySubscriptionEvaluationSwitch) DtDECLARE_FLOAT_ACCESSOR_MUTATOR(theAddressDelayRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay | DtDECLARE_FLOAT_ACCESSOR_MUTATOR (theAutoProvideDelayRidName, autoProvideDelay, setAutoProvideDelay) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theAllProvideUpdateRequestsDelayedRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed | DtDECLARE_INT_ACCESSOR_MUTATOR (theBestEffortSendRetriesRidName, bestEffortSendRetries, setBestEffortSendRetries) DtDECLARE_INT_ACCESSOR_MUTATOR(theBestEffortSendRetryWaitUsecRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec | DtDECLARE_INT_ACCESSOR_MUTATOR (theCatchFedAmbExceptionsRidName, catchFedAmbExceptions, setCatchFedAmbExceptions) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theCheckFlagRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking | DtDECLARE_INT_ACCESSOR_MUTATOR (theConveyOnlyAvailableDimensionsRidName, conveyOnlyAvailableDimensions, setConveyOnlyAvailableDimensions) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theCrcCheckFedFileRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile | DtDECLARE_INT_ACCESSOR_MUTATOR (theDataDistMgmtRidName, dataDistMgmt, setDataDistMgmt) DtDECLARE_STRING_ACCESSOR_MUTATOR(theDdmFixedGridFilenameRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename | DtDECLARE_INT_ACCESSOR_MUTATOR (theDdmFixedGridRidName, ddmFixedGrid, setDdmFixedGrid) DtDECLARE_STRING_ACCESSOR_MUTATOR(theDefaultTimeImplementationRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation | DtDECLARE_STRING_ACCESSOR_MUTATOR (theDefaultFedFileRidName, defaultFedFile, setDefaultFedFile) DtDECLARE_INT_ACCESSOR_MUTATOR(theDeleteOrphansRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans | DtDECLARE_STRING_ACCESSOR_MUTATOR (theDestAddrStringRidName, destAddrString, setDestAddrString) DtDECLARE_INT_ACCESSOR_MUTATOR(theDetachNotifyLevelFromStdOutRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut | DtDECLARE_INT_ACCESSOR_MUTATOR (theDisableUnlicensedForTwoRidName, disableUnlicensedForTwo, setDisableUnlicensedForTwo) DtDECLARE_FLOAT_ACCESSOR_MUTATOR(theDiscoveryMsgBundlingDelayRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay | DtDECLARE_INT_ACCESSOR_MUTATOR (theDistributedForwarderPortRidName, distributedForwarderPort, setDistributedForwarderPort) DtDECLARE_INT_ACCESSOR_MUTATOR(theDistributedUdpForwarderModeRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode | DtDECLARE_INT_ACCESSOR_MUTATOR (theDistributeFedFileAsynchronouslyRidName, distributeFedFileAsynchronously, setDistributeFedFileAsynchronously) DtDECLARE_INT_ACCESSOR_MUTATOR(theDistributeFedFileRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theFullFedFileDistributionName, fullFedFileDistribution, setFullFedFileDistribution) DtDECLARE_INT_ACCESSOR_MUTATOR(theDualTransmitFirstInteractionRegionsRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions | DtDECLARE_INT_ACCESSOR_MUTATOR (theDumpFedRidName, dumpFed, setDumpFed) DtDECLARE_INT_ACCESSOR_MUTATOR(theDumpRidRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theAutomaticNameReserveEnabledRidName, automaticNameReserveEnabled, setAutomaticNameReserveEnabled) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theEnableBestEffortSendRetryRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theEnableCheckVersionRidName, enableCheckVersion, setEnableCheckVersion) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theEnableFederateHeartbeatRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theEnableFedexMsgRoutingRidName, enableFedexMsgRouting, setEnableFedexMsgRouting) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theEnableFomBackwardsCompatibilityRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theEnableHlaObjectNamePrefixRidName, enableHlaObjectNamePrefix, setEnableHlaObjectNamePrefix) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theEnableMessageThrottlingRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theEnableNameReservationRidName, enableNameReservation, setEnableNameReservation) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theEnableLRCNetworkStatisticsMonitoringRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theEnableNetworkTestingRidName, enableNetworkTesting, setEnableNetworkTesting) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theEnablePacketBundlingRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theEnableSaveRestoreWhenUsingRtiexecRidName, enableSaveRestoreWhenUsingRtiexec, setEnableSaveRestoreWhenUsingRtiexec) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theEnableSharedMemoryExecEventLogRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theEnableTcpCompressionRidName, isTcpCompressionEnabled, setTcpCompressionEnabled) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theEnableTcpSmartForwardingRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theEnableUdpCompressionRidName, isUdpCompressionEnabled, setUdpCompressionEnabled) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theEnableUdpSmartForwardingRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theEnableUpdateRateReductionRidName, enableUpdateRateReduction, setEnableUpdateRateReduction) DtDECLARE_FLOAT_ACCESSOR_MUTATOR(theExecMcastDiscoveryDelayRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay | DtDECLARE_INT_ACCESSOR_MUTATOR (theExtend13and1516interopRidName, extend13and1516interop, setExtend13and1516interop) DtDECLARE_FLOAT_ACCESSOR_MUTATOR(theFederateHeartbeatIntervalRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval | DtDECLARE_INT_ACCESSOR_MUTATOR (theFederateReconnectPauseRidName, federateReconnectPause, setFederateReconnectPause) DtDECLARE_FLOAT_ACCESSOR_MUTATOR(theFederateTimeoutIntervalRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval | DtDECLARE_FLOAT_ACCESSOR_MUTATOR (theFlushTimeoutIntervalRidName, flushTimeoutInterval, setFlushTimeoutInterval) DtDECLARE_INT_ACCESSOR_MUTATOR(theFomDataTransportTypeControlRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl | DtDECLARE_INT_ACCESSOR_MUTATOR (theFomModuleMergingRidName, fomModuleMerging, setFomModuleMerging) DtDECLARE_INT_ACCESSOR_MUTATOR(theFomModuleSortingRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting | DtDECLARE_INT_ACCESSOR_MUTATOR (theForceFullComplianceRidName, forceFullCompliance, setForceFullCompliance) DtDECLARE_INT_ACCESSOR_MUTATOR(theForceUnlicensedForTwoRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo | DtDECLARE_FLOAT_ACCESSOR_MUTATOR (theForwardingDelayRidName, forwardingDelay, setForwardingDelay) DtDECLARE_STRING_ACCESSOR_MUTATOR(theImplicitDdmParamsFileRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo setImplicitDdmParamsFile | DtDECLARE_INT_ACCESSOR_MUTATOR (theInternalMsgReliableWhenUsingRtiexecRidName, internalMsgReliableWhenUsingRtiexec, setInternalMsgReliableWhenUsingRtiexec) DtDECLARE_INT_ACCESSOR_MUTATOR(theInternalMsgSmartForwardingWhenUsingRtiexecRidName |
| RID Parameters Declarations. | |
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo setImplicitDdmParamsFile setInternalMsgSmartForwardingWhenUsingRtiexec | DtDECLARE_FLOAT_ACCESSOR_MUTATOR (theIOPeriodRidName, IOPeriod, setIOPeriod) DtDECLARE_STRING_ACCESSOR_MUTATOR(theLogFileDirectoryName |
| RID Parameters Declarations. | |
| DtDECLARE_FLOAT_ACCESSOR_MUTATOR (theTickWaitPeriodRidName, tickWaitPeriod, setTickWaitPeriod) DtDECLARE_STRING_ACCESSOR_MUTATOR(theLogFileNameRidName | |
| RID Parameters Declarations. | |
| setLogFileName | DtDECLARE_FLOAT_ACCESSOR_MUTATOR (theLrcMcastDiscoveryDelayRidName, lrcMcastDiscoveryDelay, setLrcMcastDiscoveryDelay) DtDECLARE_STRING_ACCESSOR_MUTATOR(theMaxChannelAddrRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr | DtDECLARE_INT_ACCESSOR_MUTATOR (theMaxForwarderQueueRidName, maxForwarderQueue, setMaxForwarderQueue) DtDECLARE_INT_ACCESSOR_MUTATOR(theMaxIOCountRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount | DtDECLARE_INT_ACCESSOR_MUTATOR (theMaxIOQueueRidName, maxIOQueue, setMaxIOQueue) DtDECLARE_INT_ACCESSOR_MUTATOR(theIOQueueIndicatorRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator | DtDECLARE_INT_ACCESSOR_MUTATOR (theMaxNumFederatesRidName, maxNumFederates, setMaxNumFederates) DtDECLARE_INT_ACCESSOR_MUTATOR(theMaxUdpPacketSizeRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize | DtDECLARE_STRING_ACCESSOR_MUTATOR (theMcastDiscoveryAddrStringRidName, mcastDiscoveryAddrString, setMcastDiscoveryAddrString) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theMcastDiscoveryEnabledRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled | DtDECLARE_INT_ACCESSOR_MUTATOR (theMcastDiscoveryPortRidName, mcastDiscoveryPort, setMcastDiscoveryPort) DtDECLARE_INT_ACCESSOR_MUTATOR(theMcastDiscoveryTriesRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries | DtDECLARE_INT_ACCESSOR_MUTATOR (theMcastTtlRidName, mcastTtl, setMcastTtl) DtDECLARE_STRING_ACCESSOR_MUTATOR(theMinChannelAddrRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr | DtDECLARE_INT_ACCESSOR_MUTATOR (theMomExceptionLoggingRidName, momExceptionLogging, setMomExceptionLogging) DtDECLARE_INT_ACCESSOR_MUTATOR(theMomFederateUpdateIntervalRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval | DtDECLARE_STRING_ACCESSOR_MUTATOR (theMomModuleExtensionFileNameRidName, momModuleExtensionFileName, setMomModuleExtensionFileName) DtDECLARE_INT_ACCESSOR_MUTATOR(theMomServiceAvailableRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable | DtDECLARE_INT_ACCESSOR_MUTATOR (theNotifyLevelRidName, notifyLevel, setNotifyLevel) DtDECLARE_INT_ACCESSOR_MUTATOR(thePacketBundlingSizeRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize | DtDECLARE_BOOL_ACCESSOR_MUTATOR (thePreferLocalFomModulesRidName, preferLocalFomModules, setPreferLocalFomModules) DtDECLARE_INT_ACCESSOR_MUTATOR(theProcessUnknownUpdatesForDiscoveryRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery | DtDECLARE_FLOAT_ACCESSOR_MUTATOR (theReceiveToleranceRidName, receiveTolerance, setReceiveTolerance) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theReconnectEnabledRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theResignResponseEnabledRidName, resignResponseEnabled, setResignResponseEnabled) DtDECLARE_FLOAT_ACCESSOR_MUTATOR(theResponseIntervalRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval | DtDECLARE_INT_ACCESSOR_MUTATOR (theReuseLogFileRidName, reuseLogFile, setReuseLogFile) DtDECLARE_INT_ACCESSOR_MUTATOR(theReuseReleasedObjectHandlesRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theRouteToAllByDefaultRidName, routeToAllByDefault, setRouteToAllByDefault) DtDECLARE_STRING_ACCESSOR_MUTATOR(theRtiExecLogFileNameRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName | DtDECLARE_INT_ACCESSOR_MUTATOR (theRtiExecPerformsLicensingRidName, rtiExecPerformsLicensing, setRtiExecPerformsLicensing) DtDECLARE_INT_ACCESSOR_MUTATOR(theRtiExecReconnectPauseRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause | DtDECLARE_STRING_ACCESSOR_MUTATOR (theRtiForwarderLogFileNameRidName, rtiForwarderLogFileName, setRtiForwarderLogFileName) DtDECLARE_STRING_ACCESSOR_MUTATOR(theSaveRestoreDirectoryRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory | DtDECLARE_INT_ACCESSOR_MUTATOR (theSaveRestoreTimeoutRidName, saveRestoreTimeout, setSaveRestoreTimeout) DtDECLARE_INT_ACCESSOR_MUTATOR(theSaveTransientMessagesRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages | DtDECLARE_INT_ACCESSOR_MUTATOR (theSendDiscoveredClassRidName, sendDiscoveredClass, setSendDiscoveredClass) DtDECLARE_STRING_ACCESSOR_MUTATOR(theSharedMemExecLogFileNameRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName | DtDECLARE_FLOAT_ACCESSOR_MUTATOR (theSharedMemoryMgrMaxWaitRidName, sharedMemMgrMaxWait, setSharedMemMgrMaxWait) DtDECLARE_INT_ACCESSOR_MUTATOR(theSharedMemoryModeRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode | DtDECLARE_STRING_ACCESSOR_MUTATOR (theSharedMemoryNameRidName, sharedMemName, setSharedMemName) DtDECLARE_INT_ACCESSOR_MUTATOR(theSharedMemoryQueueLengthRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength | DtDECLARE_INT_ACCESSOR_MUTATOR (theSingleCallbackPerTickRidName, singleCallbackPerTick, setSingleCallbackPerTick) DtDECLARE_INT_ACCESSOR_MUTATOR(theSocketReceiveBufferSizeRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize | DtDECLARE_INT_ACCESSOR_MUTATOR (theSmartForwardingLevelRidName, smartForwardingLevel, setSmartForwardingLevel) DtDECLARE_INT_ACCESSOR_MUTATOR(theSocketSendBufferSizeRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize | DtDECLARE_INT_ACCESSOR_MUTATOR (theStrictFomCheckingRidName, strictFomChecking, setStrictFomChecking) DtDECLARE_INT_ACCESSOR_MUTATOR(theStrictNameReservationRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theStrictHLA1516eAttributeOwnershipUnavailableCallbackRidName, strictHLA1516eAttributeOwnershipUnavailableCallback, setStrictHLA1516eAttributeOwnershipUnavailableCallback) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theWaitIOPeriodForBundlingRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling | DtDECLARE_INT_ACCESSOR_MUTATOR (theTcpBufferSizeRidName, tcpBufferSize, setTcpBufferSize) DtDECLARE_INT_ACCESSOR_MUTATOR(theTcpCompressionLevelRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel | DtDECLARE_INT_ACCESSOR_MUTATOR (theTcpNoDelayRidName, tcpNoDelay, setTcpNoDelay) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theThrowExceptionForDisabledServiceRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theThrowExceptionOnConcurrentAccessRidName, throwExceptionOnConcurrentAccess, setThrowExceptionOnConcurrentAccess) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theThrowExceptionCallNotAllowedFromWithinCallbackRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theEnableWarningsForDisabledServicesRidName, enableWarningsForDisabledServices, setEnableWarningsForDisabledServices) DtDECLARE_INT_ACCESSOR_MUTATOR(theTickFavorsNetworkRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork | DtDECLARE_INT_ACCESSOR_MUTATOR (theTimeMgmtRidName, timeMgmt, setTimeMgmt) DtDECLARE_FLOAT_ACCESSOR_MUTATOR(theTransmitDelayRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay | DtDECLARE_FLOAT_ACCESSOR_MUTATOR (theTransmitRateRidName, transmitRate, setTransmitRate) DtDECLARE_INT_ACCESSOR_MUTATOR(theUdpCompressionLevelRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel | DtDECLARE_INT_ACCESSOR_MUTATOR (theUdpPortRidName, udpPort, setUdpPort) DtDECLARE_INT_ACCESSOR_MUTATOR(theTcpPortRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort | DtDECLARE_INT_ACCESSOR_MUTATOR (theUse32BitsForValueSizeRidName, use32BitsForValueSize, setUse32BitsForValueSize) DtDECLARE_INT_ACCESSOR_MUTATOR(theUseBusyWaitForTickMinMaxRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theUseRandomNumberForFedHandleRidName, useRandomNumberForFedHandle, setUseRandomNumberForFedHandle) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theUseRtiExecRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theConfigureConnectionWithRidRidName, configureConnectionWithRid, setConfigureConnectionWithRid) DtDECLARE_INT_ACCESSOR_MUTATOR(theMomVerboseLevelRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel | DtDECLARE_BOOL_ACCESSOR_MUTATOR (theNextEventRequestAndRetractServiceEnabledRidName, nextEventRequestAndRetractServiceEnabled, setNextEventRequestAndRetractServiceEnabled) DtDECLARE_INT_ACCESSOR_MUTATOR(theTestConnectionThresholdRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel setTestConnectionThreshold | DtDECLARE_INT_ACCESSOR_MUTATOR (thePeerForwarderReconnectNumberOfTriesRidName, peerForwarderReconnectNumberOfTries, setPeerForwarderReconnectNumberOfTries) DtDECLARE_FLOAT_ACCESSOR_MUTATOR(thePeerForwarderReconnectDelayRidName |
| RID Parameters Declarations. | |
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel setTestConnectionThreshold setPeerForwarderReconnectDelay | DtDECLARE_INT_ACCESSOR_MUTATOR (theLrcMinidumperLevelRidName, lrcMinidumperLevel, setLrcMinidumperLevel) DtDECLARE_BOOL_ACCESSOR_MUTATOR(theMomEvokeCallbackObserverEnabledRidName |
| RID Parameters Declarations. | |
This class manages the RTI's start-up configuration using both MTL variables and functions.
| typedef std::vector<DtDMFilterStruct> DtRIDParameters::DtDMFilterList |
| typedef std::set<DtInetAddrAndPort> DtRIDParameters::DtInetAddrAndPortSet |
| typedef std::vector<MAKRti::DtInetAddr> DtRIDParameters::DtInetAddrList |
| typedef std::vector<MAKRti::DtString> DtRIDParameters::DtStringList |
| typedef std::map<MAKRti::DtString,DtFloatRidParameter> DtRIDParameters::FloatParameterMap |
| typedef std::map<MAKRti::DtString,DtIntRidParameter> DtRIDParameters::IntParameterMap |
|
protected |
Overridden RID parameters.
| typedef std::map<MAKRti::DtString,DtRIDParameters> DtRIDParameters::PreconfiguredRidMap |
Returns a const reference to the map of preconfigured RIDs.
Initializes the map the first time this method is called.
| typedef std::map<MAKRti::DtString,DtStringRidParameter> DtRIDParameters::StringParameterMap |
0 == no Async IO 1 == Asynchronous IO, (same as old parameter RTI_asynchronousIO ) 2 == Asynchronous IO + Asynchronous Message Processing (same as old parameter RTI_asynchronousMessageProcessing) 3 == Asynchronous IO + Asynchronous Callbacks ( same as old parameter RTI_asynchronousCallbacks )
0 == ( Default ) FOM data is sent either best effort or reliable based on FOM settings.
(default, forced setting when using forceFullCompliance is enabled) 1 == All FOM data is sent best effort. (forced setting when using lightweight configurations) 2 == All FOM data is sent reliable. (only permitted when RTI_configureConnectionWithRid is 1)
0 == ( Default ) Minidumper is not enabled 1 == Minidumper will prompt the user to generate a .dmp file 2 == Minidumper will generate .dmp file (no prompt) 3 == No .dmp is generated, and program will exit silently
| DtRIDParameters::DtRIDParameters | ( | ) |
Default constructor for use as a simple model.
|
explicit |
Default constructor for use as a simple model from an mtl file on disk.
| DtRIDParameters::DtRIDParameters | ( | int | highestNotifyLevelDuringInitialization, |
| const std::vector< MAKRti::DtString > *const | ridExpressions, | ||
| bool | enableRtiExec | ||
| ) |
CTOR.
| DtRIDParameters::DtRIDParameters | ( | const MAKRti::DtString & | expression | ) |
CTOR.
| DtRIDParameters::DtRIDParameters | ( | const DtRIDParameters & | orig | ) |
Copy CTOR.
|
virtual |
destructor
|
protectedvirtual |
Handle error when accessor fails.
|
protected |
rti1516::createRtiAmbassador has a std::set<wstring> argument which can be used to apply lisp changes to the rid as if the changes were in the rid file itself.
| void DtRIDParameters::applyParameterOverrides | ( | ) |
Applies the parameter overrides set with ::overrideRidParameters Non-virtual (Called from CTOR).
|
virtual |
Apply the RID initialization expression to this RID.
| int DtRIDParameters::asynchronousCallbacks | ( | ) | const |
Deprecated: Declaring as a private rid variable.
| int DtRIDParameters::asynchronousIO | ( | ) | const |
Deprecated: Declaring as a private rid variable.
| int DtRIDParameters::asynchronousProcessMessage | ( | ) | const |
Deprecated: Declaring as a private rid variable.
|
protected |
Read and process DDM fixed grid definition Returns false when gridConfigFilename not found.
|
protected |
read all DM filters for Objects or Interactions from lisp env.
|
protected |
read all additional Fom Modules specified from lisp env.
|
protected |
If forceEnableRtiExec is enabled ( we were instantiated from an ExecThread ) then make sure useRtiExec is set.
| void DtRIDParameters::clearAncillaryForwarderGroupAddrs | ( | ) |
Clear the list of ancillary forwarder group addresses.
|
virtual |
Compare the given RID with this one.
Returns a string containing the names of parameters that don't match.
|
virtual |
Compare the given RID with this one.
Populates maps with names and values of parameters that don't match.
| int DtRIDParameters::compliantSettingForParameter | ( | const MAKRti::DtString & | parameter | ) | const |
What is the required compliance setting for this parameter.
|
protected |
copyRidParameters is used by the DtRIDParameters copy constructor to deep copy the DtRidParameter objects.
| const DtStringList& DtRIDParameters::createFomModules | ( | ) | const |
Return the list of create FOM modules.
|
protectedvirtual |
createRidParameter will take and store all of the elements required of a DtRidParameter object, in three forms (int, MAKRti::DtString, and float).
createRidParameter will allocate memory for the variable and return the address allocated. DtRidParameter objects are expected to be valid for the lifetime of the DtRIDParameters object, ~DtRIDParameters calls destroyAllRidParameters and frees the allocated memory. copyRidParameters is used by the DtRIDParameters copy constructor to deep copy the DtRidParameter objects.
|
protectedvirtual |
createRidParameter will take and store all of the elements required of a DtRidParameter object, in three forms (int, MAKRti::DtString, and float).
createRidParameter will allocate memory for the variable and return the address allocated. DtRidParameter objects are expected to be valid for the lifetime of the DtRIDParameters object, ~DtRIDParameters calls destroyAllRidParameters and frees the allocated memory. copyRidParameters is used by the DtRIDParameters copy constructor to deep copy the DtRidParameter objects.
|
protectedvirtual |
createRidParameter will take and store all of the elements required of a DtRidParameter object, in three forms (int, MAKRti::DtString, and float).
createRidParameter will allocate memory for the variable and return the address allocated. DtRidParameter objects are expected to be valid for the lifetime of the DtRIDParameters object, ~DtRIDParameters calls destroyAllRidParameters and frees the allocated memory. copyRidParameters is used by the DtRIDParameters copy constructor to deep copy the DtRidParameter objects.
| MAKRti::DtInetAddr DtRIDParameters::destAddr | ( | ) | const |
Get the destination address as a network address (versus string representation).
| const DtInetAddrList& DtRIDParameters::destinationAddrs | ( | ) | const |
Return the list of additional destination addresses.
|
protected |
destroy all RidParameter objects.
RidParameter objects are expected to be valid for the lifetime of the DtRIDParameter object.
|
protected |
destroy a single RidParameter object.
RidParameter objects are expected to be valid for the lifetime of the DtRIDParameter object.
| MAKRti::DtInetAddr DtRIDParameters::DMMulticastGroupInterface | ( | MAKRti::DtInetAddr | multicastGroup | ) | const |
Get the network interface for the specified DM Multicast address (returns networkInterfaceAddr() if no interface was specified)
| DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | thePreferRidToFedSwitchTableName | , |
| preferRidToFedSwitchTable | , | ||
| setPreferRidToFedSwitchTable | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theConveyRegionDesignatorSwitchName | , |
| conveyRegionDesignatorSwitch | , | ||
| setConveyRegionDesignatorSwitch | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theAttributeScopeAdvisorySwitchName | , |
| attributeScopeAdvisorySwitch | , | ||
| setAttributeScopeAdvisorySwitch | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theObjectClassRelevanceAdvisorySwitchName | , |
| objectClassRelevanceAdvisorySwitch | , | ||
| setObjectClassRelevanceAdvisorySwitch | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theServiceReportingSwitchName | , |
| serviceReportingSwitch | , | ||
| setServiceReportingSwitch | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theDelaySubscriptionEvaluationSwitchName | , |
| delaySubscriptionEvaluationSwitch | , | ||
| setDelaySubscriptionEvaluationSwitch | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theFullFedFileDistributionName | , |
| fullFedFileDistribution | , | ||
| setFullFedFileDistribution | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theAutomaticNameReserveEnabledRidName | , |
| automaticNameReserveEnabled | , | ||
| setAutomaticNameReserveEnabled | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theEnableCheckVersionRidName | , |
| enableCheckVersion | , | ||
| setEnableCheckVersion | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theEnableFedexMsgRoutingRidName | , |
| enableFedexMsgRouting | , | ||
| setEnableFedexMsgRouting | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theEnableHlaObjectNamePrefixRidName | , |
| enableHlaObjectNamePrefix | , | ||
| setEnableHlaObjectNamePrefix | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theEnableNameReservationRidName | , |
| enableNameReservation | , | ||
| setEnableNameReservation | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theEnableNetworkTestingRidName | , |
| enableNetworkTesting | , | ||
| setEnableNetworkTesting | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theEnableSaveRestoreWhenUsingRtiexecRidName | , |
| enableSaveRestoreWhenUsingRtiexec | , | ||
| setEnableSaveRestoreWhenUsingRtiexec | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theEnableTcpCompressionRidName | , |
| isTcpCompressionEnabled | , | ||
| setTcpCompressionEnabled | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theEnableUdpCompressionRidName | , |
| isUdpCompressionEnabled | , | ||
| setUdpCompressionEnabled | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theEnableUpdateRateReductionRidName | , |
| enableUpdateRateReduction | , | ||
| setEnableUpdateRateReduction | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | thePreferLocalFomModulesRidName | , |
| preferLocalFomModules | , | ||
| setPreferLocalFomModules | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theResignResponseEnabledRidName | , |
| resignResponseEnabled | , | ||
| setResignResponseEnabled | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theRouteToAllByDefaultRidName | , |
| routeToAllByDefault | , | ||
| setRouteToAllByDefault | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theStrictHLA1516eAttributeOwnershipUnavailableCallbackRidName | , |
| strictHLA1516eAttributeOwnershipUnavailableCallback | , | ||
| setStrictHLA1516eAttributeOwnershipUnavailableCallback | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theThrowExceptionOnConcurrentAccessRidName | , |
| throwExceptionOnConcurrentAccess | , | ||
| setThrowExceptionOnConcurrentAccess | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theEnableWarningsForDisabledServicesRidName | , |
| enableWarningsForDisabledServices | , | ||
| setEnableWarningsForDisabledServices | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theUseRandomNumberForFedHandleRidName | , |
| useRandomNumberForFedHandle | , | ||
| setUseRandomNumberForFedHandle | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theConfigureConnectionWithRidRidName | , |
| configureConnectionWithRid | , | ||
| setConfigureConnectionWithRid | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel DtRIDParameters::DtDECLARE_BOOL_ACCESSOR_MUTATOR | ( | theNextEventRequestAndRetractServiceEnabledRidName | , |
| nextEventRequestAndRetractServiceEnabled | , | ||
| setNextEventRequestAndRetractServiceEnabled | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay DtRIDParameters::DtDECLARE_FLOAT_ACCESSOR_MUTATOR | ( | theAutoProvideDelayRidName | , |
| autoProvideDelay | , | ||
| setAutoProvideDelay | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval DtRIDParameters::DtDECLARE_FLOAT_ACCESSOR_MUTATOR | ( | theFlushTimeoutIntervalRidName | , |
| flushTimeoutInterval | , | ||
| setFlushTimeoutInterval | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo DtRIDParameters::DtDECLARE_FLOAT_ACCESSOR_MUTATOR | ( | theForwardingDelayRidName | , |
| forwardingDelay | , | ||
| setForwardingDelay | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo setImplicitDdmParamsFile setInternalMsgSmartForwardingWhenUsingRtiexec DtRIDParameters::DtDECLARE_FLOAT_ACCESSOR_MUTATOR | ( | theIOPeriodRidName | , |
| IOPeriod | , | ||
| setIOPeriod | |||
| ) |
RID Parameters Declarations.
| DtRIDParameters::DtDECLARE_FLOAT_ACCESSOR_MUTATOR | ( | theTickWaitPeriodRidName | , |
| tickWaitPeriod | , | ||
| setTickWaitPeriod | |||
| ) |
RID Parameters Declarations.
| setLogFileName DtRIDParameters::DtDECLARE_FLOAT_ACCESSOR_MUTATOR | ( | theLrcMcastDiscoveryDelayRidName | , |
| lrcMcastDiscoveryDelay | , | ||
| setLrcMcastDiscoveryDelay | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery DtRIDParameters::DtDECLARE_FLOAT_ACCESSOR_MUTATOR | ( | theReceiveToleranceRidName | , |
| receiveTolerance | , | ||
| setReceiveTolerance | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName DtRIDParameters::DtDECLARE_FLOAT_ACCESSOR_MUTATOR | ( | theSharedMemoryMgrMaxWaitRidName | , |
| sharedMemMgrMaxWait | , | ||
| setSharedMemMgrMaxWait | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay DtRIDParameters::DtDECLARE_FLOAT_ACCESSOR_MUTATOR | ( | theTransmitRateRidName | , |
| transmitRate | , | ||
| setTransmitRate | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theBestEffortSendRetriesRidName | , |
| bestEffortSendRetries | , | ||
| setBestEffortSendRetries | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theCatchFedAmbExceptionsRidName | , |
| catchFedAmbExceptions | , | ||
| setCatchFedAmbExceptions | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theConveyOnlyAvailableDimensionsRidName | , |
| conveyOnlyAvailableDimensions | , | ||
| setConveyOnlyAvailableDimensions | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theDataDistMgmtRidName | , |
| dataDistMgmt | , | ||
| setDataDistMgmt | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theDdmFixedGridRidName | , |
| ddmFixedGrid | , | ||
| setDdmFixedGrid | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theDisableUnlicensedForTwoRidName | , |
| disableUnlicensedForTwo | , | ||
| setDisableUnlicensedForTwo | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theDistributedForwarderPortRidName | , |
| distributedForwarderPort | , | ||
| setDistributedForwarderPort | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theDistributeFedFileAsynchronouslyRidName | , |
| distributeFedFileAsynchronously | , | ||
| setDistributeFedFileAsynchronously | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theDumpFedRidName | , |
| dumpFed | , | ||
| setDumpFed | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theExtend13and1516interopRidName | , |
| extend13and1516interop | , | ||
| setExtend13and1516interop | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theFederateReconnectPauseRidName | , |
| federateReconnectPause | , | ||
| setFederateReconnectPause | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theFomModuleMergingRidName | , |
| fomModuleMerging | , | ||
| setFomModuleMerging | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theForceFullComplianceRidName | , |
| forceFullCompliance | , | ||
| setForceFullCompliance | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo setImplicitDdmParamsFile DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theInternalMsgReliableWhenUsingRtiexecRidName | , |
| internalMsgReliableWhenUsingRtiexec | , | ||
| setInternalMsgReliableWhenUsingRtiexec | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theMaxForwarderQueueRidName | , |
| maxForwarderQueue | , | ||
| setMaxForwarderQueue | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theMaxIOQueueRidName | , |
| maxIOQueue | , | ||
| setMaxIOQueue | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theMaxNumFederatesRidName | , |
| maxNumFederates | , | ||
| setMaxNumFederates | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theMcastDiscoveryPortRidName | , |
| mcastDiscoveryPort | , | ||
| setMcastDiscoveryPort | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theMcastTtlRidName | , |
| mcastTtl | , | ||
| setMcastTtl | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theMomExceptionLoggingRidName | , |
| momExceptionLogging | , | ||
| setMomExceptionLogging | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theNotifyLevelRidName | , |
| notifyLevel | , | ||
| setNotifyLevel | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theReuseLogFileRidName | , |
| reuseLogFile | , | ||
| setReuseLogFile | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theRtiExecPerformsLicensingRidName | , |
| rtiExecPerformsLicensing | , | ||
| setRtiExecPerformsLicensing | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theSaveRestoreTimeoutRidName | , |
| saveRestoreTimeout | , | ||
| setSaveRestoreTimeout | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theSendDiscoveredClassRidName | , |
| sendDiscoveredClass | , | ||
| setSendDiscoveredClass | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theSingleCallbackPerTickRidName | , |
| singleCallbackPerTick | , | ||
| setSingleCallbackPerTick | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theSmartForwardingLevelRidName | , |
| smartForwardingLevel | , | ||
| setSmartForwardingLevel | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theStrictFomCheckingRidName | , |
| strictFomChecking | , | ||
| setStrictFomChecking | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theTcpBufferSizeRidName | , |
| tcpBufferSize | , | ||
| setTcpBufferSize | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theTcpNoDelayRidName | , |
| tcpNoDelay | , | ||
| setTcpNoDelay | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theTimeMgmtRidName | , |
| timeMgmt | , | ||
| setTimeMgmt | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theUdpPortRidName | , |
| udpPort | , | ||
| setUdpPort | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theUse32BitsForValueSizeRidName | , |
| use32BitsForValueSize | , | ||
| setUse32BitsForValueSize | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel setTestConnectionThreshold DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | thePeerForwarderReconnectNumberOfTriesRidName | , |
| peerForwarderReconnectNumberOfTries | , | ||
| setPeerForwarderReconnectNumberOfTries | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel setTestConnectionThreshold setPeerForwarderReconnectDelay DtRIDParameters::DtDECLARE_INT_ACCESSOR_MUTATOR | ( | theLrcMinidumperLevelRidName | , |
| lrcMinidumperLevel | , | ||
| setLrcMinidumperLevel | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation DtRIDParameters::DtDECLARE_STRING_ACCESSOR_MUTATOR | ( | theDefaultFedFileRidName | , |
| defaultFedFile | , | ||
| setDefaultFedFile | |||
| ) |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans DtRIDParameters::DtDECLARE_STRING_ACCESSOR_MUTATOR | ( | theDestAddrStringRidName | , |
| destAddrString | , | ||
| setDestAddrString | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize DtRIDParameters::DtDECLARE_STRING_ACCESSOR_MUTATOR | ( | theMcastDiscoveryAddrStringRidName | , |
| mcastDiscoveryAddrString | , | ||
| setMcastDiscoveryAddrString | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval DtRIDParameters::DtDECLARE_STRING_ACCESSOR_MUTATOR | ( | theMomModuleExtensionFileNameRidName | , |
| momModuleExtensionFileName | , | ||
| setMomModuleExtensionFileName | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause DtRIDParameters::DtDECLARE_STRING_ACCESSOR_MUTATOR | ( | theRtiForwarderLogFileNameRidName | , |
| rtiForwarderLogFileName | , | ||
| setRtiForwarderLogFileName | |||
| ) |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode DtRIDParameters::DtDECLARE_STRING_ACCESSOR_MUTATOR | ( | theSharedMemoryNameRidName | , |
| sharedMemName | , | ||
| setSharedMemName | |||
| ) |
RID Parameters Declarations.
| int DtRIDParameters::enableBigMessage | ( | ) | const |
Deprecated: Declaring as a private rid variable.
|
protected |
Parses supplied strings and extracts RID expressions.
Expressions are processed after RID file is processed. Entry may contain RID file name directive at beginning, in which case, remainder of entry is processed as an expression.
|
protected |
Parses string for RID file name directive (must be at beginning of string).
If found, extracts file name and sets it as the file name to open. Return bool: directive found?
|
protected |
lookup the RID file base on args passed to createRTIAmbassador (1516 only) working directory and env.
variables: RTI_RID_FILE and RTI_CONFIG and set myName and myFullPathToRidFile Returns "" if file not found (ie - using default params) on return, restOfArgs will point to char* representation of lisp expressions that were (possibly) input to createRTIAmbassador (again 1516 only).
| DtFixedGridConfiguration* DtRIDParameters::fixedGridConfiguration | ( | ) | const |
Get the DDM fixed grid configuration Returns NULL if not initialized.
| const FloatParameterMap& DtRIDParameters::floatRidParameters | ( | ) | const |
Return the map of float parameters.
| void DtRIDParameters::forceParametersToCompliance | ( | ) |
Forces all parameters required for compliance to their compliant settings.
| const DtInetAddrAndPortSet& DtRIDParameters::forwarderGroupAddrs | ( | ) | const |
Return the list of forwarder group addresses.
| unsigned int DtRIDParameters::forwarderGroupSize | ( | ) |
Return the size of the forwarder group list.
| const MAKRti::DtFilename DtRIDParameters::forwarderRoutesFile | ( | ) | const |
Returns the forwarder routes file name.
| void DtRIDParameters::fullyCompliantParameters | ( | std::map< MAKRti::DtString, int > & | parameters | ) | const |
Caller passes fullyCompliantParameters an empty map which will be populated with the compliance parameters and their compliant settings.
Map will be emptied if it isn't already.
| const std::string& DtRIDParameters::getCreationFileName | ( | ) | const |
returns reference to member myCreationFileName.
| const MAKRti::DtString& DtRIDParameters::getCreationLispExprs | ( | ) | const |
returns reference to member myCreationLispExprs
| MAKRti::DtFilename DtRIDParameters::getFullPathToRidFile | ( | ) | const |
returns full working path to rid file, either absolutely or relatively.
|
virtual |
Get the string value for the given parameter name Returns boolean: got value successfully?
|
virtual |
|
virtual |
Get the integer value for the given parameter name Returns boolean: got value successfully?
|
virtual |
|
virtual |
Get the float value for the given parameter name Returns boolean: got value successfully?
|
virtual |
| MAKRti::DtString DtRIDParameters::getRidConfigurationName | ( | ) | const |
Returns the name of the RID configuration if this RID is preconfigured.
|
protected |
Build list of Dest Addrs.
|
protected |
Build and print the Fixed DDM Grid.
|
protected |
Build list of Forwarder Groups.
|
protected |
Used to initialize RID parameters from disk, or from the given expression.
Serves to make the RID internally consistent and valid.
|
protected |
Build update Rates table.
| const DtDMFilterList& DtRIDParameters::interactionMulticastDefinitions | ( | ) | const |
Return the interaction class definitions for DM mulitcast filtering.
| const IntParameterMap& DtRIDParameters::intRidParameters | ( | ) | const |
Return the map of integer parameters.
| bool DtRIDParameters::isFloatParameter | ( | const MAKRti::DtString & | ) | const |
Does the given parameter have a float value?
| bool DtRIDParameters::isFullyCompliant | ( | ) | const |
Is this RID Params object fully compliant?
| bool DtRIDParameters::isIntParameter | ( | const MAKRti::DtString & | ) | const |
Does the given parameter have an integer value?
| bool DtRIDParameters::isPreconfiguredRid | ( | ) | const |
Returns the name of the RID configuration if this RID is preconfigured.
| bool DtRIDParameters::isStringParameter | ( | const MAKRti::DtString & | ) | const |
Does the given parameter have a string value?
| const DtStringList& DtRIDParameters::joinFomModules | ( | ) | const |
Return the names of join FOM modules.
|
protected |
Loads the expressions for function rid parameters Non-virtual (Called from CTOR).
|
protected |
Loads the RID file.
Non-virtual (Called from CTOR).
| void DtRIDParameters::makeLogDirectory | ( | ) | const |
This will make the directory for the RID parameter RTI_logFileDirectory if necessary.
| MAKRti::DtInetAddr DtRIDParameters::maxChannel | ( | ) | const |
Get the Maximum DDM multicast address as a network address (versus string representation).
|
static |
The maximum number of objects a single federate may register.
| int DtRIDParameters::maxObjectsPerFederate | ( | ) | const |
Return maximum number of objects allowed in a federation.
|
static |
The maximum number of simultaneious federates in a federation execution.
| MAKRti::DtString DtRIDParameters::mcastDevAddrString | ( | ) | const |
Deprecated: Declaring as a private rid variable.
| MAKRti::DtInetAddr DtRIDParameters::mcastDiscoveryAddr | ( | ) | const |
Get the multicast discovery address as a network address (versus string representation).
| MAKRti::DtInetAddr DtRIDParameters::minChannel | ( | ) | const |
Get the minimum DDM multicast address as a network address (versus string representation).
| const MAKRti::DtMtlEnvironment& DtRIDParameters::mtlEnvironment | ( | ) | const |
returns mtl environment
|
protected |
returns mtl environment
|
protectedvirtual |
Handle error when mutator fails.
|
static |
Number of bits used to represent an object instance handle.
| const DtDMFilterList& DtRIDParameters::objectMulticastDefinitions | ( | ) | const |
Return the object class definitions for DM mulitcast filtering.
|
static |
Sets the the RID parameters to be overridden after the RID file is loaded.
Must be called prior to instantiation of the DtRIDParameters object. Takes a map of RID parameter names to values. Note that parameter overrides are only applied when using the DtRIDParameters(int,const std::vector<DtString>*,bool) CTOR.
|
protected |
Populate the compliant, federation, LRC, etc. lists.
|
static |
Returns the preconfigured RID with the given name.
If no preconfigured RID with the given name exists, this method returns NULL.
|
static |
Returns a const reference to the map of preconfigured RIDs.
Initializes the map the first time this method is called.
| void DtRIDParameters::printParameters | ( | ) |
Prints all RID parameters.
| DtAsynchronousIOModeEnum DtRIDParameters::processingModel | ( | ) | const |
Return processing mode value.
|
protected |
Registers all MTL parameters.
Non-virtual (Called from CTOR).
| bool DtRIDParameters::requiredComplianceParameter | ( | const MAKRti::DtString & | parameter | ) | const |
Is this parameter required for compliance.
| void DtRIDParameters::revertComplianceParametersToOriginalSettings | ( | ) |
Forces all compliant parameters back to their original values.
| DtInconsistentRidReaction DtRIDParameters::ridConsistencyChecking | ( | ) | const |
Returns value of RID consistency checking variable.
0 == no RID consistency checking. 1 == correct inconsistent variables 2 == federate throws exception if rid is inconsistent.
|
virtual |
Populate the maps with rid parameters (names and values) for each parameter name found in the given input string.
| const MAKRti::DtFilename& DtRIDParameters::ridName | ( | ) | const |
Returns the RID file name.
|
virtual |
Consistency checking is performed on a subset of RID parameters Returns a string containing the names of those parameters that should be consistency checked.
| void DtRIDParameters::sanityCheckAddressFamily | ( | ) |
Sanity checks to ensure all IP addresses use the same address family.
| void DtRIDParameters::sanityCheckReliableConnRIDParameters | ( | ) |
Specific sanity checks for reliable connection parameters.
| void DtRIDParameters::sanityCheckRIDParameters | ( | ) |
Some RID parameters have dependent settings.
If the dependent settings are not set, disable the depending parameter.
| void DtRIDParameters::sanityCheckTcpAddressFamily | ( | ) |
Sanity checks to ensure all IP addresses use the same address family.
| void DtRIDParameters::sanityCheckUdpAddressFamily | ( | ) |
Sanity checks to ensure all IP addresses use the same address family.
| void DtRIDParameters::saveOriginalCompliantSettings | ( | ) |
Saves the current settings of the compliance parameters as the original settings.
| MAKRti::DtFilename DtRIDParameters::saveRestoreDirectoryPath | ( | ) |
Return the directory with an appended path separator.
| void DtRIDParameters::setForwarderRoutesFile | ( | const MAKRti::DtFilename & | file | ) |
Set the forwarder routes file name.
| void DtRIDParameters::setMaxObjectsPerFederate | ( | int | val | ) |
Set maximum number of objects allowed in a federation.
| bool DtRIDParameters::setParameter | ( | const MAKRti::DtString & | name, |
| const MAKRti::DtString & | val | ||
| ) |
Set the string value for the given parameter name Returns boolean: set value successfully?
| bool DtRIDParameters::setParameter | ( | const MAKRti::DtString & | name, |
| int | val | ||
| ) |
Set the integer value for the given parameter name Returns boolean: set value successfully?
| bool DtRIDParameters::setParameter | ( | const MAKRti::DtString & | name, |
| float | val | ||
| ) |
Set the float value for the given parameter name Returns boolean: set value successfully?
| void DtRIDParameters::setProcessingModel | ( | DtAsynchronousIOModeEnum | value | ) |
Set processing mode value.
| void DtRIDParameters::setRidConsistencyChecking | ( | DtInconsistentRidReaction | value | ) |
Set value of RID consistency checking variable.
| void DtRIDParameters::setTcpForwarderAddr | ( | const MAKRti::DtString & | addr | ) |
set tcpForwarder Addr String
| void DtRIDParameters::setTcpNetworkInterfaceAddr | ( | const MAKRti::DtString & | networkIFace | ) |
Set TCP multicast network interface address.
| void DtRIDParameters::setTransmitLaggardLBTS | ( | int | yesNo | ) |
Set the indicator to transmit laggard LBTS value.
| void DtRIDParameters::setUdpNetworkInterfaceAddr | ( | const MAKRti::DtString & | networkIFace | ) |
Set UDP multicast network interface address.
| void DtRIDParameters::setUseRoutesFile | ( | bool | fileShouldBeUsed | ) |
| const StringParameterMap& DtRIDParameters::stringRidParameters | ( | ) | const |
Return the map of string parameters.
| MAKRti::DtInetAddr DtRIDParameters::tcpForwarderAddr | ( | ) | const |
Get the TCP Forwarder address as a network address (versus string representation).
| MAKRti::DtString DtRIDParameters::tcpForwarderAddrString | ( | ) | const |
get tcpForwarderAddr String
| MAKRti::DtInetAddr DtRIDParameters::tcpNetworkInterfaceAddr | ( | ) | const |
Get the TCP multicast network interface address as a network address (versus string representation).
| MAKRti::DtString DtRIDParameters::tcpNetworkInterfaceAddrString | ( | ) | const |
Get TCP multicast network interface address string.
|
virtual |
Converts the RID parameters to a lisp string If versionHeader is set to true, the lisp will start with a comment containing the RTI version.
| int DtRIDParameters::transmitLaggardLBTS | ( | ) | const |
Return the indicator to transmit laggard LBTS value.
| MAKRti::DtInetAddr DtRIDParameters::udpNetworkInterfaceAddr | ( | ) | const |
Get the UDP multicast network interface address as a network address (versus string representation).
| MAKRti::DtString DtRIDParameters::udpNetworkInterfaceAddrString | ( | ) | const |
Get UDP multicast network interface address string.
| const DtUpdateNameRateMap& DtRIDParameters::updateRates | ( | ) | const |
Return the map between update rate names and values.
| const std::vector<DtUpdateRateSubscriptionStruct>& DtRIDParameters::updateRateSubscriptions | ( | ) | const |
Return the update rate subscription definitions.
| bool DtRIDParameters::useDMFiltering | ( | ) | const |
Returns true if we should use DM filtering.
| bool DtRIDParameters::useGroupSocket | ( | ) | const |
Returns true if we should use a group socket; 0 otherwise.
| bool DtRIDParameters::useRoutesFile | ( | ) | const |
Set/Get routes file control.
|
protected |
Check the validity of a single IP address. Throws if invalid.
|
protected |
Check all IP addresses in RID for validity. Throws if they are not.
|
protected |
Check and validate uniqueness of all ports in the RID.
Throws if multiple params attempt to use the same port (ie - this is an invalid RID).
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch DtRIDParameters::addressDelay |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay DtRIDParameters::allProvideUpdateRequestsDelayed |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch DtRIDParameters::attributeRelevanceAdvisorySwitch |
RID Parameters Declarations.
| DtRIDParameters::autoProvideSwitch |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed DtRIDParameters::bestEffortSendRetryWaitUsec |
RID Parameters Declarations.
| setAutoProvideSwitch DtRIDParameters::conveyProducingFederateSwitch |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking DtRIDParameters::crcCheckFedFile |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile DtRIDParameters::ddmFixedGridFilename |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename DtRIDParameters::defaultTimeImplementation |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation DtRIDParameters::deleteOrphans |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans DtRIDParameters::detachNotifyLevelFromStdOut |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut DtRIDParameters::discoveryMsgBundlingDelay |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay DtRIDParameters::distributedUdpForwarderMode |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode DtRIDParameters::distributeFedFile |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile DtRIDParameters::dualTransmitFirstInteractionRegions |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions DtRIDParameters::dumpRid |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid DtRIDParameters::enableBestEffortSendRetry |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry DtRIDParameters::enableFederateHeartbeat |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat DtRIDParameters::enableFomBackwardsCompatibility |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility DtRIDParameters::enableMessageThrottling |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled DtRIDParameters::enablePacketBundling |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling DtRIDParameters::enableSharedMemoryExecEventLog |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec DtRIDParameters::errorChecking |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch DtRIDParameters::exceptionReportingSwitch |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled DtRIDParameters::execMcastDiscoveryDelay |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay DtRIDParameters::federateHeartbeatInterval |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval DtRIDParameters::federateTimeoutInterval |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval DtRIDParameters::fomDataTransportTypeControl |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl DtRIDParameters::fomModuleSorting |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting DtRIDParameters::forceUnlicensedForTwo |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo DtRIDParameters::implicitDdmParamsFile |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch DtRIDParameters::interactionRelevanceAdvisorySwitch |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo setImplicitDdmParamsFile DtRIDParameters::internalMsgSmartForwardingWhenUsingRtiexec |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount DtRIDParameters::ioQueueIndicator |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog DtRIDParameters::isTcpSmartForwardingEnabled |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled DtRIDParameters::isUdpSmartForwardingEnabled |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo setImplicitDdmParamsFile setInternalMsgSmartForwardingWhenUsingRtiexec DtRIDParameters::logFileDirectory |
RID Parameters Declarations.
| DtRIDParameters::logFileName |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling DtRIDParameters::lrcNetworkStatisticsMonitoringEnabled |
RID Parameters Declarations.
| setLogFileName DtRIDParameters::maxChannelAddr |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr DtRIDParameters::maxIOCount |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator DtRIDParameters::maxUdpPacketSize |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize DtRIDParameters::mcastDiscoveryEnabled |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled DtRIDParameters::mcastDiscoveryTries |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries DtRIDParameters::minChannelAddr |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel setTestConnectionThreshold setPeerForwarderReconnectDelay DtRIDParameters::momEvokeCallbackObserverEnabled |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr DtRIDParameters::momFederateUpdateInterval |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval DtRIDParameters::momServiceAvailable |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec DtRIDParameters::momVerboseLevel |
RID Parameters Declarations.
|
protected |
The list of create FOM modules.
|
protected |
The RID file name found in the creation arguments (if present)
|
protected |
The expressions found in the creation arguments (if any)
|
protected |
Group socket configuration.
|
protected |
The MTL environment used to process RID parameters.
|
protected |
Fixed grid configuration.
|
protected |
The default values for float RID parameters.
|
protected |
The forwarder group addresses.
|
protected |
The forwarder routes file name.
|
protected |
The path to the loaded file.
|
protected |
The list of parameters that effect compliance, their fully compliant setting, and their original setting (as read from the RID file)
|
protected |
DM object class configuration.
|
protected |
The default values for integer RID parameters.
|
protected |
Flag indicating whether the RID configuration is preconfigured.
|
protected |
The list of join FOM modules.
|
protected |
The RID file name.
|
protected |
DM interaction class configuration.
|
protected |
Plugin names configuration.
|
protected |
Preconfigured RID configuration name.
Only set if the RID configuration is preconfigured.
|
protected |
The status of the file search of the RID file.
|
protected |
The default values for string RID parameters.
|
protected |
Pre-Evolved way to set the list of (name rate) Map from update rate name to value.
|
protected |
Update rate subscriptions.
|
protected |
Controls whether routes file should be used (set internally)
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable DtRIDParameters::packetBundlingSize |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel setTestConnectionThreshold DtRIDParameters::peerForwarderReconnectDelay |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize DtRIDParameters::processUnknownUpdatesForDiscovery |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery DtRIDParameters::reconnectEnabled |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled DtRIDParameters::responseInterval |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval DtRIDParameters::reuseReleasedObjectHandles |
RID Parameters Declarations.
|
protected |
Deprecated RID parameters.
|
protected |
Deprecated RID parameters.
|
protected |
Deprecated RID parameters.
|
protected |
Deprecated RID parameters.
|
protected |
Deprecated RID parameters.
|
protected |
Deprecated RID parameters.
|
protected |
Deprecated RID parameters.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles DtRIDParameters::rtiExecLogFileName |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName DtRIDParameters::rtiExecReconnectPause |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause DtRIDParameters::saveRestoreDirectory |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory DtRIDParameters::saveTransientMessages |
RID Parameters Declarations.
| setAutoProvideSwitch setConveyProducingFederateSwitch setAttributeRelevanceAdvisorySwitch setInteractionRelevanceAdvisorySwitch setExceptionReportingSwitch setAddressDelay setAllProvideUpdateRequestsDelayed setBestEffortSendRetryWaitUsec setErrorChecking setCrcCheckFedFile setDdmFixedGridFilename setDefaultTimeImplementation setDeleteOrphans setDetachNotifyLevelFromStdOut setDiscoveryMsgBundlingDelay setDistributedUdpForwarderMode setDistributeFedFile setDualTransmitFirstInteractionRegions setDumpRid setEnableBestEffortSendRetry setEnableFederateHeartbeat setEnableFomBackwardsCompatibility setEnableMessageThrottling setLrcNetworkStatisticsMonitoringEnabled setEnablePacketBundling setEnableSharedMemoryExecEventLog setTcpSmartForwardingEnabled setUdpSmartForwardingEnabled setExecMcastDiscoveryDelay setFederateHeartbeatInterval setFederateTimeoutInterval setFomDataTransportTypeControl setFomModuleSorting setForceUnlicensedForTwo setImplicitDdmParamsFile setInternalMsgSmartForwardingWhenUsingRtiexec DtRIDParameters::setLogFileDirectoryName |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages DtRIDParameters::sharedMemExecLogFileName |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode DtRIDParameters::sharedMemLength |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength DtRIDParameters::socketReceiveBufferSize |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize DtRIDParameters::socketSendBufferSize |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize DtRIDParameters::strictNameReservation |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling DtRIDParameters::tcpCompressionLevel |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel DtRIDParameters::tcpPort |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax setUseRtiExec setMomVerboseLevel DtRIDParameters::testConnectionThreshold |
RID Parameters Declarations.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
Default destination address strings for IPv4 and IPv6.
|
staticprotected |
DDM channel addresses to be used if none are specified in the RID.
|
staticprotected |
DDM channel addresses to be used if none are specified in the RID.
|
staticprotected |
Default destination address strings for IPv4 and IPv6.
|
staticprotected |
DDM channel addresses to be used if none are specified in the RID.
|
staticprotected |
DDM channel addresses to be used if none are specified in the RID.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
mutableprotected |
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The maximum number of objects a single federate may register.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The maximum number of simultaneious federates in a federation execution.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
mutableprotected |
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
mutableprotected |
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The parameter values that make configuration compliant.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
mutableprotected |
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Group names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
mutableprotected |
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
mutableprotected |
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
mutableprotected |
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
mutableprotected |
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
|
staticprotected |
DDM channel addresses to be used if none are specified in the RID.
|
staticprotected |
The strings that represent the RID parameter groups RID Parameter names.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService DtRIDParameters::throwExceptionCallNotAllowedFromWithinCallback |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel DtRIDParameters::throwExceptionForDisabledService |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback DtRIDParameters::tickFavorsNetwork |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork DtRIDParameters::transmitDelay |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay DtRIDParameters::udpCompressionLevel |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort DtRIDParameters::useBusyWaitForTickMinMax |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation setWaitIOPeriodForBundling setTcpCompressionLevel setThrowExceptionForDisabledService setThrowExceptionCallNotAllowedFromWithinCallback setTickFavorsNetwork setTransmitDelay setUdpCompressionLevel setTcpPort setUseBusyWaitForTickMinMax DtRIDParameters::useRtiExec |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName DtRIDParameters::useSharedMem |
RID Parameters Declarations.
| setLogFileName setMaxChannelAddr setMaxIOCount setIOQueueIndicator setMaxUdpPacketSize setMcastDiscoveryEnabled setMcastDiscoveryTries setMinChannelAddr setMomFederateUpdateInterval setMomServiceAvailable setPacketBundlingSize setProcessUnknownUpdatesForDiscovery setReconnectEnabled setResponseInterval setReuseReleasedObjectHandles setRtiExecLogFileName setRtiExecReconnectPause setSaveRestoreDirectory setSaveTransientMessages setSharedMemExecLogFileName setSharedMemoryMode setSharedMemLength setSocketReceiveBufferSize setSocketSendBufferSize setStrictNameReservation DtRIDParameters::waitIOPeriodForBundling |
RID Parameters Declarations.