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

 

Changes the events in an input stream to point events by keeping only the event start times.

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

Syntax

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

Parameters

Return Value

Type: Microsoft.ComplexEventProcessing.Linq.CepStream<TPayload>

A stream with events converted to point events.

Type Parameters

  • TPayload
    The type of the input event payload.

See Also

CepStream Class
Microsoft.ComplexEventProcessing.Linq Namespace

Return to top