DOFInterestListenerinterestAdded Method OpenDOF Object Access Library
Called when the node receives any level of interest for a binding.

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

C#
void interestAdded(
	DOF dof,
	DOFRequest request,
	DOFObjectID objectID,
	DOFInterfaceID interfaceID,
	DOFInterestLevel level
)

Parameters

dof
Type: org.opendof.core.oalDOF
The DOF where this listener was added. This will never be null.
request
Type: org.opendof.core.oalDOFRequest
An object that contains information about the request. This will never be null.
objectID
Type: org.opendof.core.oalDOFObjectID
The DOFObjectID the requestor has expressed interest in. This will never be null. This may be DOFObjectID.BROADCAST , indicating that the interest is for the specified interface on all objects. It will not be DOFObjectID.BROADCAST if the interfaceID parameter is DOFInterfaceID.WILDCARD .
interfaceID
Type: org.opendof.core.oalDOFInterfaceID
The DOFInterfaceID the requestor has expressed interest in. This may be null or DOFInterfaceID.WILDCARD, indicating that the interest is for all interfaces on the specified object. It will not be DOFInterfaceID.WILDCARD if the objectID parameter is DOFObjectID.BROADCAST.
level
Type: org.opendof.core.oalDOFInterestLevel
The level of interest. This will never be null.
Remarks

Called when the node receives any level of interest for a binding. Program this method to monitor interest requests. The DOFRequest is passed in this method for informational purposes, but this method should not be used to respond to the request.
See Also

Reference