CepStreamOperator Class
Creates a user-defined stream operator that processes events in sync time order.
Inheritance Hierarchy
System.Object
Microsoft.ComplexEventProcessing.Extensibility.CepStreamOperator
Microsoft.ComplexEventProcessing.Extensibility.CepStreamOperator<TInputEvent, TInputPayload, TOutputPayload>
Namespace: Microsoft.ComplexEventProcessing.Extensibility
Assembly: Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)
Syntax
[DataContractAttribute]
public abstract class CepStreamOperator
The CepStreamOperator type exposes the following members.
Properties
Name | Description | |
---|---|---|
IsEmpty | When overriden in a derived class, gets a value that indicates whether the internal state of the operator is empty. When true, the StreamInsight query engine may discard the operator instance to minimize memory utilization. | |
NextCti | When overridden in a derived class, gets the next point in time at which the operator will be asked to process a CTI event. If the value is null, or less than or equal to the sync time of the last processed event, then no CTI events will be passed to the ProcessEvent method. |
Top
Methods
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
MemberwiseClone | (Inherited from Object.) | |
ToString | (Inherited from Object.) |
Top
Remarks
The operator must be serializable using WCF DataContractSerializer.
For more information, see User-Defined Stream Operators.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.