CepWindowStream<T> Class

 

Results from applying a windowing operator to a stream.

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

Inheritance Hierarchy

System.Object
  Microsoft.ComplexEventProcessing.Linq.CepWindowStream<T>

Syntax

public class CepWindowStream<T>
generic<typename T>
public ref class CepWindowStream 
type CepWindowStream<'T> = class end
Public Class CepWindowStream(Of T)

Type Parameters

  • T
    Event payload type.

Properties

Name Description
System_CAPS_pubproperty Expression

Gets the lambda expression that is associated with this object.

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 ToString()

(Inherited from Object.)

Remarks

A query writer can group the events in the input using one of many window definition centered around timestamps, count, and so on. Each of the items in the result stream is of the type CepWindow where each CepWindow refers to a finite collection of events. This is used as the basis for aggregate calculations, ordering and ranking, or user-defined operations.

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.Linq Namespace

Return to top