Click or drag to resize

AdapterCoordinator Interface

A AdapterCoordinator coordinates several Adapters so that the events they send into the runtime engine arrive in some well-defined order, in effect making the several Adapters into one large sending Adapter.

Namespace:  com.espertech.esperio
Assembly:  NEsper.IO (in NEsper.IO.dll) Version: 8.0.0.0
Syntax
C#
public interface AdapterCoordinator : InputAdapter, 
	Adapter

The AdapterCoordinator type exposes the following members.

Properties
  NameDescription
Public propertyState
Get the state of this Adapter.
(Inherited from Adapter.)
Top
Methods
  NameDescription
Public methodCoordinate
Coordinate an InputAdapter. the InputAdapter to coordinate
Public methodDestroy
Dispose the Adapter, stopping the sending of all events and releasing all the resources, and disallowing any further state changes on the Adapter.
(Inherited from Adapter.)
Public methodPause
Pause the sending of events after a Adapter has been started.
(Inherited from Adapter.)
Public methodResume
Resume sending events after the Adapter has been paused.
(Inherited from Adapter.)
Public methodStart
Start the sending of events into the runtime egine.
(Inherited from Adapter.)
Public methodStop
Stop sending events and return the Adapter to the OPENED state, ready to be started once again.
(Inherited from Adapter.)
Top
See Also