IOPCUAClientMonitoredItemCallback.ItemStateCallback (METH) ¶ METHOD ItemStateCallback : OpcUa_StatusCode This callback is called to inform the client on state changes InOut: Scope Name Type Comment Return ItemStateCallback OpcUa_StatusCode Input hMonitoredItem RTS_IEC_HANDLE Handle to the moniotred item. newState OPCUAClientMonitoredItemState The new state of the monitored item. reason OpcUa_StatusCode The reason for the state transition.
IOPCUAClientMonitoredItemCallback.ItemValueCallback (METH) ¶ METHOD ItemValueCallback : OpcUa_StatusCode This callback is called for sampling monitored items and contains the value changes of the monitored item. InOut: Scope Name Type Comment Return ItemValueCallback OpcUa_StatusCode Input hMonitoredItem RTS_IEC_HANDLE Handle to the moniotred item. value OpcUa_DataValue The new value of the monitored item. reason OpcUa_StatusCode The new status of the monitored item.
IOPCUAClientSubscriptionCallback (ITF) ¶ INTERFACE IOPCUAClientSubscriptionCallback EXTENDS __SYSTEM.IQueryInterface This callback interface is used to report changes of subscription to the client. Methods: ParameterChangeCallback StateChangeCallback Structure: ParameterChangeCallback (Method) StateChangeCallback (Method)
IOPCUAClientSubscriptionCallback.ParameterChangeCallback (METH) ¶ METHOD ParameterChangeCallback : OpcUa_StatusCode The callback is called when the parameters of a subscription has changed. This happens typically after creation (OpcUaClient_CreateSubscription) or modification (OpcUaClient_ModifySubscription) of a subscription. The values in this call represent the reviced parameters from the server. InOut: Scope Name Type Comment Return ParameterChangeCallback OpcUa_StatusCode Input hSubscription RTS_IEC_HANDLE Handle to the subscription that has changed. publishingInterval OpcUa_Double The reviced publishing interval. lifeTimeCount OpcUa_UInt32 The reviced lifetime count. maxKeepAliveCount OpcUa_UInt32 The reviced maximum keepalive count. maxNotificationsPerPublish OpcUa_UInt32 The reviced maximum number of notifications per publish. priority OpcUa_Byte reason OpcUa_StatusCode The status of the service.
IOPCUAClientSubscriptionCallback.StateChangeCallback (METH) ¶ METHOD StateChangeCallback : OpcUa_StatusCode The callback is called when the state of a subscription has changed. This happens typically after creation (OpcUaClient_CreateSubscription) or OpcUaClient_SetPublishingMode of a subscription. InOut: Scope Name Type Return StateChangeCallback OpcUa_StatusCode Input hSubscription RTS_IEC_HANDLE newState OPCUAClientSubscriptionState reason OpcUa_StatusCode
IOPCUAClientViewCallback (ITF) ¶ INTERFACE IOPCUAClientViewCallback EXTENDS __SYSTEM.IQueryInterface This callback contains callbacks used to transport the results of the view services to the client. Methods: BrowseCallback BrowseNextCallback RegisterNodesCallback TranslateBrowsePathsToNodeIdsCallback UnregisterNodesCallback Structure: BrowseCallback (Method) BrowseNextCallback (Method) RegisterNodesCallback (Method) TranslateBrowsePathsToNodeIdsCallback (Method) UnregisterNodesCallback (Method)
IOPCUAClientViewCallback.BrowseCallback (METH) ¶ METHOD BrowseCallback : OpcUa_StatusCode Called in response to OpcUaClient_Browser. InOut: Scope Name Type Comment Return BrowseCallback OpcUa_StatusCode Input hConnection RTS_IEC_HANDLE The handle of the connection used to call Browse. serviceResult OpcUa_StatusCode The result of the Browse service. numOfResults OpcUa_UInt32 Number of browse results results POINTER TO OpcUa_BrowseResult Pointer to an array of browse results.
IOPCUAClientViewCallback.BrowseNextCallback (METH) ¶ METHOD BrowseNextCallback : OpcUa_StatusCode Called in response to OpcUaClient_BrowseNext. InOut: Scope Name Type Comment Return BrowseNextCallback OpcUa_StatusCode Input hConnection RTS_IEC_HANDLE The handle of the connection used to call BrowseNext. serviceResult OpcUa_StatusCode The result of the BrowseNext service. numOfResults OpcUa_UInt32 Number of browse results results POINTER TO OpcUa_BrowseResult Pointer to an array of browse results.
IOPCUAClientViewCallback.RegisterNodesCallback (METH) ¶ METHOD RegisterNodesCallback : OpcUa_StatusCode Called in response to OpcUaClient_RegsiterNodes. InOut: Scope Name Type Comment Return RegisterNodesCallback OpcUa_StatusCode Input hConnection RTS_IEC_HANDLE The handle of the connection used to call RegisterNodes. serviceResult OpcUa_StatusCode The result of the RegisterNodes service. numOfNodes OpcUa_UInt32 Number of registered nodes. registeredNodeIds POINTER TO OpcUa_NodeId Pointer to the list of intermediate NodeIDs.
IOPCUAClientViewCallback.TranslateBrowsePathsToNodeIdsCallback (METH) ¶ METHOD TranslateBrowsePathsToNodeIdsCallback : OpcUa_StatusCode Called in response to OpcUaClient_TranslateBrowsePathsToNodeIds. InOut: Scope Name Type Comment Return TranslateBrowsePathsToNodeIdsCallback OpcUa_StatusCode Input hConnection RTS_IEC_HANDLE The handle of the connection used to call TranslateBrowsePathsToNodeIds. serviceResult OpcUa_StatusCode The result of the TranslateBrowsePathsToNodeIds service. numOfResults OpcUa_UInt32 Number of translated BrowsePaths. results POINTER TO OpcUa_BrowsePathResult Pointer to an array of translated results.