CepPointStreamOperator<TInputPayload, TOutputPayload> Class

 

Creates a user-defined stream operator that processes point events in StartTime order.

Namespace:   Microsoft.ComplexEventProcessing.Extensibility
Assembly:  Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)

Inheritance Hierarchy

System.Object
  Microsoft.ComplexEventProcessing.Extensibility.CepStreamOperator
    Microsoft.ComplexEventProcessing.Extensibility.CepStreamOperator<TInputEvent, TInputPayload, TOutputPayload>
      Microsoft.ComplexEventProcessing.Extensibility.CepPointStreamOperator<TInputPayload, TOutputPayload>

Syntax

[DataContractAttribute]
public abstract class CepPointStreamOperator<TInputPayload, TOutputPayload> : CepStreamOperator<PointEvent<TInputPayload>, TInputPayload, TOutputPayload>
generic<typename TInputPayload, typename TOutputPayload>
[DataContractAttribute]
public ref class CepPointStreamOperator abstract : CepStreamOperator<PointEvent<TInputPayload>^, TInputPayload, TOutputPayload>
[<AbstractClass>]
[<DataContractAttribute>]
type CepPointStreamOperator<'TInputPayload, 'TOutputPayload> = 
    class
        inherit CepStreamOperator<PointEvent<'TInputPayload>, 'TInputPayload, 'TOutputPayload>
    end
<DataContractAttribute>
Public MustInherit Class CepPointStreamOperator(Of TInputPayload, TOutputPayload)
    Inherits CepStreamOperator(Of PointEvent(Of TInputPayload), TInputPayload, TOutputPayload)

Type Parameters

  • TInputPayload
    The type of the input event payload.
  • TOutputPayload
    The type of the output event payload.

Constructors

Name Description
System_CAPS_protmethod CepPointStreamOperator<TInputPayload, TOutputPayload>()

Initializes a new instance of the CepPointStreamOperator<TInputPayload, TOutputPayload> class.

Properties

Name Description
System_CAPS_pubproperty 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. (Inherited from CepStreamOperator.)

System_CAPS_pubproperty 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. (Inherited from CepStreamOperator.)

Methods

Name Description
System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ProcessEvent(TInputEvent)

When overridden in a derived class, generates output and updates internal state of the operator in response to an input event. (Inherited from CepStreamOperator<TInputEvent, TInputPayload, TOutputPayload>.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

Remarks

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.

See Also

Microsoft.ComplexEventProcessing.Extensibility Namespace

Return to top