CepOrderedStream<T> Class

An ordered stream is the result of an "order by" or one of its variants in the query. It helps constrain subsequent query specification to operations that are allowed on an ordered stream, such as Take.

Inheritance Hierarchy

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

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

Syntax

public class CepOrderedStream<T>

Type Parameters

  • T

The CepOrderedStream<T> type exposes the following members.

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

Extension Methods

  Name Description
Public Extension Method Select<TInput, TResult> Given an ordered stream, this method produces an ordered stream that can be used for ranking. (Defined by CepStream.)
Public Extension Method Take<TPayload>(UInt32) Overloaded. Given an ordered stream, takes a given number of events from each window. (Defined by CepStream.)
Public Extension Method Take<TInput, TResult>(UInt32, Expression<Func<CepRankedEvent<TInput>, TResult>>) Overloaded. Takes a given number of events from each window and also evaluates the given expression. This is used for cases in which you want to project the rank into the result of Take(). (Defined by CepStream.)
Public Extension Method ThenBy<TPayload, TOrderKey> Orders an ordered stream by another orderKey as indicated by rankSelector. (Defined by CepStream.)
Public Extension Method ThenByDescending<TPayload, TOrderKey> Orders an ordered stream by another orderKey as indicated by rankSelector. (Defined by CepStream.)

Top

Remarks

Once a stream has been ordered, it must be followed by a Take operation that yields a regular CEP stream that can be composed further.

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