CepStream.SnapshotWindow<TPayload> Method (CepStream<TPayload>)

 

Transforms a stream to a window stream where each member is a CepWindow using the default output policy.

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

Syntax

public static CepWindowStream<CepWindow<TPayload>> SnapshotWindow<TPayload>(
    this CepStream<TPayload> source
)
public:
generic<typename TPayload>
[ExtensionAttribute]
static CepWindowStream<CepWindow<TPayload>^>^ SnapshotWindow(
    CepStream<TPayload>^ source
)
static member SnapshotWindow<'TPayload> : 
        source:CepStream<'TPayload> -> CepWindowStream<CepWindow<'TPayload>>
<ExtensionAttribute>
Public Shared Function SnapshotWindow(Of TPayload) (
    source As CepStream(Of TPayload)
) As CepWindowStream(Of CepWindow(Of TPayload))

Parameters

Return Value

Type: Microsoft.ComplexEventProcessing.Linq.CepWindowStream<CepWindow<TPayload>>

A window stream to which aggregates, ranking or user-defined operations can be applied.

Type Parameters

  • TPayload
    The type of the input event payload.

See Also

SnapshotWindow Overload
CepStream Class
Microsoft.ComplexEventProcessing.Linq Namespace

Return to top