▼NApama | |
▼NEngine | |
▼NClient | |
CConsumerOperationsConstants | Legacy constants class - Deprecated - Use Apama.Engine.Client.EngineClientConstants instead. |
CCorrelatorManagementConstants | Legacy constants class - Deprecated - Use Apama.Engine.Client.EngineClientConstants instead. |
CEngineClientConstants | A static class containing constants used by the engine client interfaces. |
CEngineClientFactory | EngineClientFactory is a factory for classes that implement Apama messaging or correlator management interfaces |
CIConnectOperations | IConnectOperations is an interface that specifies methods for connecting an engine as a consumer of another engine |
CIConsumerOperations | IConsumerOperations is an interface that specifies the standard operations to enable a client to receive events on specific channels from a remote Correlator. |
CICorrelatorManagement | ICorrelatorManagement is the interface for all management operations that can be performed on an Apama Correlator |
CIEngineClient | Provides a convenient interface for interacting with an Apama engine, typically a Correlator. This includes the ability to send and receive events, inject and delete EPL/MonitorScript, connect Apama engines together, inspect what was injected into correlator and more. |
CIMessagingClient | This interface is for all operations that can be performed on an Apama component related to sending and receiving messages (e.g. events, injections, deletions, etc). |
CIReconnectPolicy | IReconnectPolicy is a policy that can be set on an EngineClient object which controls when it should reconnect |
CMessagingClientConstants | Legacy constants class - Deprecated - Use Apama.Engine.Client.EngineClientConstants instead. |
CApi | The Api class contains static methods to initialise and stop the client interface. |
CEngineConnection | EngineConnection encapsulates the information related to a connection between two Apama messaging components |
CEngineInfo | This class provides access to all of the information returned from an engine as a result of a call to the InspectEngine() method |
CEngineManagement | The EngineManagement interface is the primary low-level interface to the Engine, and allows operations to be carried out on it. |
CEngineStatus | EngineStatus represents the operational status of the Engine. |
CMonitorScript | A MonitorScript object encapsulates a MonitorScript code fragment, containing package, event and monitor definitions to be injected into an Engine. |
CNamedAggregateInfo | This class provides access to a snapshot of information about an aggregate that is/was live in the engine. |
CNamedContextInfo | This class provides access to a snapshot of information about a Context that is/was live in the engine. |
CNamedEventTypeInfo | This class provides access to a snapshot of information about a Monitor that is/was live in the engine. |
CNamedJavaApplicationInfo | This class provides access to a snapshot of information about a Java (JMon) Application that is/was live in the engine |
CNamedMonitorInfo | This class provides access to a snapshot of information about a Monitor that is/was live in the engine. |
CNamedPluginReceiverInfo | This class provides access to a snapshot of information about a PluginReceiver that is/was connected to the engine. |
CNamedReceiverInfo | This class provides access to a snapshot of information about a Receiver that is/was connected to the engine. |
CNamedTimerInfo | This class provides access to a snapshot of information about a Timer that is/was live in the engine. |
CNameInfo | This is the base class for a named object (i.e. event type, container type or monitor) returned by an engine inspection. Returned by methods of the EngineInfo class. |
▼NEvent | |
▼NParser | |
CBooleanFieldType | Represents the Apama boolean type, for which values are specified as Boolean objects. |
CChannelFieldType | Represents the Apama Channel type, for which values are specified as String objects. |
CContextFieldType | Represents the Apama context type, for which values are specified as String objects. |
CDecimalFieldType | Represents the Apama decimal type, for which values are specified as DecimalFieldValue objects. |
CDecimalFieldValue | Represents the value of an Apama decimal field, using Decimal or Double objects. |
CDictionaryFieldType | Non-generic class that represents the Apama dictionary<key,item> type, for which values are specified as System.Collections.IDictionary objects. |
CDictionaryFieldType< TKey, TValue > | Generic class that represents the Apama dictionary<key,item> type, for which values are specified as System.Collections.Generic.IDictionary<K,V> objects. |
CEventParser | Provides the functionality to parse System.String objects into Apama Apama.Event.Event objects, for any EventType registered with the parser. |
CEventType | Represents the definition of an Apama event type, for which values are specified as Apama.Event.Event objects. Each EventType consists of an event type name, and zero or more Field<T> objects. |
CField | Non-generic class holding the name and type of a field in an EventType (with reduced compile-time type safety compared to generic Field<T> class). |
CField< T > | Represents the name and type of a field in an EventType. |
CFieldType | Non-generic abstract base class representing an Apama type (with reduced compile-time type safety). |
CFieldType< T > | Represents an Apama type. Used to define the type of fields in an EventType, and also for type parameters in complex types such as FieldTypes.Sequence<T>(FieldType<T>). Get field type objects using FieldTypes. |
CFieldTypes | Provides factory methods and constants for getting all supported Apama event field types. |
CFloatFieldType | Represents the Apama float type, for which values are specified as Double objects. |
CIntegerFieldType | Represents the Apama integer type, for which values are specified as Int64 objects. |
CLocationFieldType | Represents the Apama location type, for which values are specified as LocationType objects. |
CLocationType | Represents the value of an Apama location type, consisting of of two (x,y) co-ordinates. |
COptionalFieldType< OptionalT, BaseT > | Represents the Apama optional type, for which the contained types are specified as either PrimitiveFieldType<T> or ReferenceFieldType<T> objects. |
CParserRuntimeException | ParserRuntimeException will be thrown when an error occurs while parsing an Apama event. |
CPrimitiveFieldType< T > | Abstract class for Apama types which will be represented by primitive types in C# (E.g. Integer, Boolean and Float). Used to define the type of fields in an EventType, and also for type parameters in complex types such as FieldTypes.Sequence<T>(FieldType<T>). Get field type objects using FieldTypes |
CReferenceFieldType< T > | Abstract class for Apama types which will be represented by reference types in C# (E.g. Sequence, Dictionary Event, Decimal etc). Used to define the type of fields in an EventType, and also for type parameters in complex types such as FieldTypes.Sequence<T>(FieldType<T>). Get field type objects using FieldTypes |
CSequenceFieldType | Non-generic class that represents the Apama sequence<type> type, for which values are specified as System.Collections.IList objects. |
CSequenceFieldType< E > | Generic class that represents the Apama sequence<type> type, for which values are specified as System.Collections.Generic.IList<E> objects. |
CStringFieldType | Represents the Apama string type, for which values are specified as String objects. |
CDisconnectableEventConsumer | 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. |
CEvent | 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). |
CEventConsumer | 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. |
CEventListenerAdapter | EventListenerAdapter is a class that provides a skeletal implementation of the IEventListener interface to minimize effort required to implement the interface. |
CEventSupplier | 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. |
CIEventListener | The old-style IEventListener specifies an interface that classes can implement to receive events from an EventServiceChannel (see also HandleEventCallback). |
▼NNet | |
▼NClient | |
▼NInterfaces | |
CBaseClientConstants | Legacy constants class - Deprecated - Use Apama.Engine.Client.EngineClientConstants instead. |
CIBaseClient | IBaseClient is a class that specifies the base interface supported by all of the Engine Client layer. |
CConnectionConstants | ConnectionConstants is a class that holds a number of common default values for host, port and other settings. |
▼NServices | |
▼NEvent | |
CChannelConfig | ChannelConfig is a helper class that assists in building a properties map for use when creating a new EventServiceChannel via the IEventService.AddChannel() method |
CCommunicationException | CommunicationException is a specialized exception for use with the Event Service that indicates that there is a problem communicating with the Correlator |
CEventServiceChannelConstants | IEventServiceChannel is the public interface for a class that represents a channel or channels on which events are received from a Correlator |
CEventServiceException | EventServiceException is a base exception class for all other specialized exceptions within with the Event Service |
CEventServiceFactory | EventServiceFactory is a class that provides a factory for creating new instances of classes that implement the IEventService interface. |
CIEventService | IEventService is an interface that represents the public API to the EventService. |
CIEventServiceChannel | The Interface for an EventServiceChannel |
CIResponseListener | IResponseListener specifies the interface that classes must implement to receive the response part of an asynchronous request-response call |
CIResponseWrapper | IResponseWrapper is an interface that specifies the public API for objects returned by the various request-response methods of the Event Service |
CResponseTimeoutException | ResponseTimeoutException is a specialized exception for use with the Event Service that indicates that a request-response timeout has been exceeded |
▼NScenario | |
CIllegalCallingThreadException | Thrown when an attempt is made to change the state of running scenarios in the data queue processing thread |
CInvalidInputParameterException | InvalidInputParameterException is a specialized exception class that is used by classes of the Scenario Service to indicate that an invalid input parameter has been provided to create or edit a ScenarioInstance |
CIScenarioDefinition | IScenarioDefinition is the public interface for a class that represents a Scenario (not an instance). |
CIScenarioInstance | IScenarioInstance is the public interface for a class that represents a Scenario instance |
CIScenarioService | IScenarioService is an interface that represents the public API to the ScenarioService. |
CParameterTypeHelper | A convenience helper class for Apama.Services.Scenario.ParameterType. |
CScenarioDefinitionConstants | |
CScenarioServiceConfig | ScenarioServiceConfig is a helper class that assists in building a properties map for use when creating a new ScenarioService via the ScenarioServiceFactory |
CScenarioServiceConstants | Constants used by the Scenario Service. |
CScenarioServiceException | ScenarioServiceException is a base exception class for all other specialized exceptions within with the Scenario Service |
CScenarioServiceFactory | ScenarioServiceFactory is a class that provides factory methods for creating new instances of classes that implement the IScenarioService interface. |
▼NUtil | |
CApamaException | A base class for Apama exceptions that callers may wish to catch. |
CLogger | The Logger class provides access to the logging functionality used by Apama .NET classes |
CPropertyChangedEventArgs | A "PropertyChanged" event gets delivered whenever an object changes a "bound" or "constrained" property. A PropertyChangeEvent object is sent as an argument to the PropertyChangeListener method |
CPropertyChangeSupport | PropertyChangeSupport is a utility class to support maintaining property listeners, keyed by property name. |
CEngineException | Exception class used for communications failure and other serious errors in any layer of the Apama engine client API stack. |