Part of vmc.contrib.axiom.iaxiom View In Hierarchy
Method | addReliableListener | Add the given Item to the set which will be notified of Items |
Method | removeReliableListener | Remove a previously added listener. |
Method | getReliableListeners | Return an iterable of the listeners which have been added to |
Add the given Item to the set which will be notified of Items available for processing.
Note: Each Item is processed synchronously. Adding too many listeners to a single batch processor will cause thestep
method to
block while it sends notification to each listener.
Parameters | listener | The item to which listened-for items will be passed for processing.
(type: IReliableListener
) |