OpenDOF Project
DOFRuntime DOF_GetRuntime ( DOF  self)

Gets this DOF's runtime, which contains data about the internal runtime state of the DOF.

It provides information about current connections, servers, and traffic statistics.

After getting the DOFRuntime, use its functions to retrieve specific information. For example, the following lines of code would retrieve a list of all connections created by myDof:

DOFRuntime runtime = DOF_GetRuntime (myDof);
DOFConnectionList myConnections = DOFRuntime_GetConnections (runtime);
...
DOFConnectionList_Destroy(myConnections);

See the functions of DOFRuntime for information about all data that can be retrieved.

Parameters
selfThe DOF whose runtime information will be retrieved. This must not be NULL.
Returns
A DOFRuntime.
core-c-dof-oal Version 7.1.5 Build 0
2017-01-25