CepAggregate<TInput, TOutput> Class

 

The base class for a user-defined non-incremental, time-insensitive 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.CepAggregate<TInput, TOutput>

Syntax

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

Constructors

Name Description
System_CAPS_protmethod CepAggregate<TInput, TOutput>()

Initializes a new instance of the CepAggregate<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<TInput>)

Generates a single scalar value as a result of the aggregate 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