Apama API Reference for .NET
10.1.0.5
|
Namespaces | |
package | Parser |
Classes | |
class | DisconnectableEventConsumer |
This class extends EventConsumer and as such can connect to the Engine through an EventSupplier and register to receive events. In addition, DisconnectableEventConsumer can also disconnect from the Engine using the Disconnect method. More... | |
class | Event |
An Event object representing an event instance in flat event string format and/or structured format (as defined by its associated Apama.Event.Parser.EventType). More... | |
class | EventConsumer |
An EventConsumer can connect to the Engine through an EventSupplier and register to receive events. In order to receive events from the Engine, a developer must inherit from this class and define its SendEvents method. This method is called by the EventSupplier when events are emitted from the Engine. More... | |
class | EventListenerAdapter |
EventListenerAdapter is a class that provides a skeletal implementation of the IEventListener interface to minimize effort required to implement the interface. More... | |
class | EventSupplier |
An EventSupplier represents the resources created by the Engine to service a connection to an external sink of events. It filters the event output of the Engine by delivering only the events emitted on a particular set of channels. An EventSupplier passes events to an EventConsumer. Call Dispose() after use, and before disposing of any associated EventConsumer. More... | |
interface | IEventListener |
The old-style IEventListener specifies an interface that classes can implement to receive events from an EventServiceChannel (see also HandleEventCallback). More... | |
Functions | |
delegate void | HandleEventCallback (Event evt) |
Delegate for handling received Apama events. More... | |
delegate void Apama.Event.HandleEventCallback | ( | Event | evt | ) |
Delegate for handling received Apama events.
evt | The received event. |