CepWindowStream<T> Class

Results from applying a windowing operator to a stream.

Inheritance Hierarchy

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

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

Syntax

public class CepWindowStream<T>

Type Parameters

  • T
    Event payload type.

The CepWindowStream<T> type exposes the following members.

Properties

  Name Description
Public property Expression Gets the lambda expression that is associated with this object.

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)

Top

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

Reference

Microsoft.ComplexEventProcessing.Linq Namespace