CepTimeSensitiveAggregate<TInput, TOutput> Class

 

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

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.CepTimeSensitiveAggregate<TInput, TOutput>

Syntax

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

Type Parameters

  • TInput
    Payload type of the input events.
  • TOutput
    Type of the scalar aggregation result.

Constructors

Name Description
System_CAPS_protmethod CepTimeSensitiveAggregate<TInput, TOutput>()

Initializes a new instance of the CepTimeSensitiveAggregate<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 Equals(Object)

(Inherited from Object.)

System_CAPS_protmethod Finalize()

(Inherited from Object.)

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

Generates a single scalar value as a result of the aggregate computation over a collection of input events.

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