'Declaration
Public Function New( _ ByVal callback As EasyUADataSetMessageEventHandler, _ ByVal state As Object, _ ByVal resolverDescriptor As UAPubSubResolverDescriptor, _ ByVal publishedDataSetName As String _ )
'Usage
Dim callback As EasyUADataSetMessageEventHandler Dim state As Object Dim resolverDescriptor As UAPubSubResolverDescriptor Dim publishedDataSetName As String Dim instance As New EasyUASubscribeDataSetArguments(callback, state, resolverDescriptor, publishedDataSetName)
public EasyUASubscribeDataSetArguments( EasyUADataSetMessageEventHandler callback, object state, UAPubSubResolverDescriptor resolverDescriptor, string publishedDataSetName )
public: EasyUASubscribeDataSetArguments( EasyUADataSetMessageEventHandler^ callback, Object^ state, UAPubSubResolverDescriptor^ resolverDescriptor, String^ publishedDataSetName )
Parameters
- callback
- A callback method to be invoked for each dataset message received.
The value of this parameter can be
null
(Nothing
in Visual Basic). - state
- The state object (can be any value supplied by your code); available in event notifications.
The value of this parameter can be
null
(Nothing
in Visual Basic). - resolverDescriptor
- Describes how the PubSub logical information should be resolved to physical.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - publishedDataSetName
- Name of the published dataset.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).