CepTimeSensitiveOperator<TInput, TOutput> Class

 

The base class for a user-defined non-incremental, time-sensitive operator.

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

Inheritance Hierarchy

System.Object
  Microsoft.ComplexEventProcessing.Extensibility.CepModule<TInput, TOutput>
    Microsoft.ComplexEventProcessing.Extensibility.CepTimeSensitiveModule<TInput, TOutput>
      Microsoft.ComplexEventProcessing.Extensibility.CepTimeSensitiveOperator<TInput, TOutput>

Syntax

public abstract class CepTimeSensitiveOperator<TInput, TOutput> : CepTimeSensitiveModule<TInput, TOutput>
generic<typename TInput, typename TOutput>
public ref class CepTimeSensitiveOperator abstract : CepTimeSensitiveModule<TInput, TOutput>
[<AbstractClass>]
type CepTimeSensitiveOperator<'TInput, 'TOutput> = 
    class
        inherit CepTimeSensitiveModule<'TInput, 'TOutput>
    end
Public MustInherit Class CepTimeSensitiveOperator(Of TInput, TOutput)
    Inherits CepTimeSensitiveModule(Of TInput, TOutput)

Type Parameters

  • TInput
    Payload type of the input events.
  • TOutput
    Payload type of the output events.

Constructors

Name Description
System_CAPS_protmethod CepTimeSensitiveOperator<TInput, TOutput>()

Initializes a new instance of the CepTimeSensitiveOperator<TInput, TOutput> class.

Properties

Name Description
System_CAPS_pubproperty InputEventType

Gets theevent type that is input to the CEP operator or aggregate.(Inherited from CepModule<TInput, TOutput>.)

Methods

Name Description
System_CAPS_pubmethod CreateIntervalEvent()

Creates an event to be contained in the returned result of the user-defined operator.

System_CAPS_pubmethod Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

System_CAPS_pubmethod GenerateOutput(IEnumerable<IntervalEvent<TInput>>, WindowDescriptor)

Generates a collection of output events as a result of the operator computation over a collection of input event payloads.

System_CAPS_pubmethod GetHashCode()

(Inherited from Object.)

System_CAPS_pubmethod GetType()

(Inherited from Object.)

System_CAPS_protmethod MemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethod ToString()

(Inherited from Object.)

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