CepStream.Union<TPayload> Method (CepStream<TPayload>, CepStream<TPayload>)

 

Unions two streams together into one stream.

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

Syntax

public static CepStream<TPayload> Union<TPayload>(
    this CepStream<TPayload> outer,
    CepStream<TPayload> inner
)
public:
generic<typename TPayload>
[ExtensionAttribute]
static CepStream<TPayload>^ Union(
    CepStream<TPayload>^ outer,
    CepStream<TPayload>^ inner
)
static member Union<'TPayload> : 
        outer:CepStream<'TPayload> *
        inner:CepStream<'TPayload> -> CepStream<'TPayload>
<ExtensionAttribute>
Public Shared Function Union(Of TPayload) (
    outer As CepStream(Of TPayload),
    inner As CepStream(Of TPayload)
) As CepStream(Of TPayload)

Parameters

Return Value

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

A stream that is the union of two input streams.

Type Parameters

  • TPayload
    The payload type of input events.

See Also

CepStream Class
Microsoft.ComplexEventProcessing.Linq Namespace

Return to top