NBEventInputConnector is the base class which must be extended to implement a connector which can receive events from the system.
Inheritance Hierarchy

IBM.Broker.Plugin.Connector NBConnector
IBM.Broker.Plugin.Connector NBInputConnector
IBM.Broker.Plugin.Connector NBEventInputConnector
Namespace: IBM.Broker.Plugin.Connector
Assembly: IBM.Broker.Plugin (in IBM.Broker.Plugin.dll) Version: 9.0.0.0
Syntax
Remarks
It is used by IBM Integration Bus to listen and wait for events from a system.
The NBEventInputConnector is constructed when a node requiring its function is constructed (for example: a DotNetInputNode). The following methods are called by Integration Bus to interact with the connector:
- Initialize is called when a node using the connector is constructed.
- Start is called when a node using the connector is ready to receive data.
- Finish is called when a node using the connector is no longer ready to receive data.
- Terminate is called when the node is stopped or destroyed.
The connector writer constructs NBEvent objects which are delivered to Integration Bus by calling the DeliverEvents( NBEvent ) method.
See Also