CepStream<TPayload>.Create Method (Uri, EventShape)

 

Creates a bound stream over an input from a given published stream.

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

Syntax

public static CepStream<TPayload> Create(
    Uri publishedStreamName,
    EventShape eventShape
)
public:
static CepStream<TPayload>^ Create(
    Uri^ publishedStreamName,
    EventShape eventShape
)
static member Create : 
        publishedStreamName:Uri *
        eventShape:EventShape -> CepStream<'TPayload>
Public Shared Function Create (
    publishedStreamName As Uri,
    eventShape As EventShape
) As CepStream(Of TPayload)

Parameters

  • publishedStreamName
    Type: System.Uri

    The name of the published stream.

Return Value

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

A bound input stream for the events in a given published stream.

See Also

Create Overload
CepStream<TPayload> Class
Microsoft.ComplexEventProcessing.Linq Namespace

Return to top