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

IBM.Broker.Plugin.Connector NBConnector
IBM.Broker.Plugin.Connector NBInputConnector
IBM.Broker.Plugin.Connector NBPollingInputConnector
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 obtain data from a system.
The NBPollingInputConnector 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 NBPollingResult objects which are returned to Integration Bus from the ReadData(TimeSpan) method.
See Also