CepStream<TPayload>.Create Method (String, Type, Object, EventShape)

 

Creates a bound stream from a given input adapter factory.

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

Syntax

public static CepStream<TPayload> Create(
    string streamName,
    Type adapterFactoryType,
    object configInfo,
    EventShape eventShape
)
public:
static CepStream<TPayload>^ Create(
    String^ streamName,
    Type^ adapterFactoryType,
    Object^ configInfo,
    EventShape eventShape
)
static member Create : 
        streamName:string *
        adapterFactoryType:Type *
        configInfo:Object *
        eventShape:EventShape -> CepStream<'TPayload>
Public Shared Function Create (
    streamName As String,
    adapterFactoryType As Type,
    configInfo As Object,
    eventShape As EventShape
) As CepStream(Of TPayload)

Parameters

  • adapterFactoryType
    Type: System.Type

    The input adapter factory type.

  • configInfo
    Type: System.Object

    The input adapter factory configuration.

Return Value

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

A bound stream whose events come from an instance of an input adapter that is generated by the input adapter factory.

See Also

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

Return to top