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_CreateConnectionList (runtime);
...
DOFConnectionList_Destroy(myConnections);

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

Lifecycle
The data returned is owned by the DOF and is only valid as long as the DOF remains valid. It must not be destroyed individually.
Parameters
selfThe DOF whose runtime information will be retrieved. This must not be NULL.
Returns
A DOFRuntime.
core-c-dof-oal Version 8.0.1 Build 0
2018-01-22