Streamable.Union<TKey,TPayload> Method

Definition

Union is a temporal union that combines two streams of like schema

public static Microsoft.StreamProcessing.IStreamable<TKey,TPayload> Union<TKey,TPayload> (this Microsoft.StreamProcessing.IStreamable<TKey,TPayload> left, Microsoft.StreamProcessing.IStreamable<TKey,TPayload> right);
static member Union : Microsoft.StreamProcessing.IStreamable<'Key, 'Payload> * Microsoft.StreamProcessing.IStreamable<'Key, 'Payload> -> Microsoft.StreamProcessing.IStreamable<'Key, 'Payload>
<Extension()>
Public Function Union(Of TKey, TPayload) (left As IStreamable(Of TKey, TPayload), right As IStreamable(Of TKey, TPayload)) As IStreamable(Of TKey, TPayload)

Type Parameters

TKey
TPayload

Parameters

left
IStreamable<TKey,TPayload>

Left source streamable for the operation.

right
IStreamable<TKey,TPayload>

Right source streamable for the operation.

Returns

Applies to