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

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

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

The connector writer constructs NBEvent objects which are delivered to Integration Bus by calling the DeliverEvents( NBEvent ) method.

See Also