Registers the listener to the space using the specified template.
This can only be used when the IDataEventSession is created with Batch enabled.

C# | Visual Basic | Visual C++ | J# |
IEventRegistration AddBatchListener<T>( T template, EventHandler<SpaceBatchDataEventArgs<T>> listener, DataEventType eventType )
Function AddBatchListener(Of T) ( _ template As T, _ listener As EventHandler(Of SpaceBatchDataEventArgs(Of T)), _ eventType As DataEventType _ ) As IEventRegistration
generic<typename T> IEventRegistration^ AddBatchListener( T template, EventHandler<SpaceBatchDataEventArgs<T>^>^ listener, DataEventType eventType )

- T
- Type of object to listen to.

- template (T)
- The template used for matching.
- listener (EventHandler<(Of <(SpaceBatchDataEventArgs<(Of <(T>)>)>)>))
- The listener which will handle notifications.
- eventType (DataEventType)
- The type of events you wish to receive notification on.

An event registration token.