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

 

Converts a CepStream of point events to an event sink that implements the IEnumerable interface. The order of events is FullyOrdered.

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

Syntax

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

Parameters

Return Value

Type: Microsoft.ComplexEventProcessing.Linq.ICepEnumerable<PointEvent<TPayload>>

An event sink that supports iteration.

Type Parameters

  • TPayload
    The type of the event payload.

See Also

ToPointEnumerable Overload
CepStream Class
Microsoft.ComplexEventProcessing.Linq Namespace

Return to top