DOFRuntimeConnectionStateListenerremoved Method OpenDOF Object Access Library
Called when this listener is removed from the DOF.Runtime, either through use of Runtime.removeConnectionListener(ConnectionStateListener) or because an exception caused the listener to be removed. Use this method to free any resources allocated in association with this listener. After this method is called, the listener will no longer be called.

You may leave this method empty to ignore notification of removal.

Namespace: org.opendof.core.oal
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax

C#
void removed(
	DOFRuntime runtime,
	DOFException exception
)

Parameters

runtime
Type: org.opendof.core.oalDOFRuntime
The runtime instance associated with this listener. This will never be null.
exception
Type: org.opendof.core.oalDOFException
The exception that caused this listener to be removed. This will be null if the listener was removed normally.
See Also

Reference