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

OnlineSystem Object
  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

public abstract class NBPollingInputConnector : NBInputConnector
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:

The connector writer constructs NBPollingResult objects which are returned to Integration Bus from the ReadData(TimeSpan) method.

See Also