Streamable.Multicast Method

Definition

Overloads

Multicast<TKey,TPayload,TResult>(IStreamable<TKey,TPayload>, Func<IStreamable<TKey,TPayload>,IStreamable<TKey,TResult>>)

Performs multicast over a streamable. This allows query writers to execute multiple subqueries over the same physical input stream.

Multicast<TKey,TPayload>(IStreamable<TKey,TPayload>, Int32)

Performs multicast over a streamable. This allows query writers to execute multiple subqueries over the same physical input stream.

Multicast<TKey,TPayloadLeft,TPayloadRight,TResult>(IStreamable<TKey, TPayloadLeft>, IStreamable<TKey,TPayloadRight>, Func<IStreamable<TKey, TPayloadLeft>,IStreamable<TKey,TPayloadRight>,IStreamable<TKey, TResult>>)

Performs multicast over a streamable. This allows query writers to execute multiple subqueries over the same physical input stream.

Multicast<TKey,TPayload,TResult>(IStreamable<TKey,TPayload>, Func<IStreamable<TKey,TPayload>,IStreamable<TKey,TResult>>)

Performs multicast over a streamable. This allows query writers to execute multiple subqueries over the same physical input stream.

public static Microsoft.StreamProcessing.IStreamable<TKey,TResult> Multicast<TKey,TPayload,TResult> (this Microsoft.StreamProcessing.IStreamable<TKey,TPayload> source, Func<Microsoft.StreamProcessing.IStreamable<TKey,TPayload>,Microsoft.StreamProcessing.IStreamable<TKey,TResult>> selector);
static member Multicast : Microsoft.StreamProcessing.IStreamable<'Key, 'Payload> * Func<Microsoft.StreamProcessing.IStreamable<'Key, 'Payload>, Microsoft.StreamProcessing.IStreamable<'Key, 'Result>> -> Microsoft.StreamProcessing.IStreamable<'Key, 'Result>
<Extension()>
Public Function Multicast(Of TKey, TPayload, TResult) (source As IStreamable(Of TKey, TPayload), selector As Func(Of IStreamable(Of TKey, TPayload), IStreamable(Of TKey, TResult))) As IStreamable(Of TKey, TResult)

Type Parameters

TKey
TPayload
TResult

Parameters

selector
Func<IStreamable<TKey,TPayload>,IStreamable<TKey,TResult>>

Returns

IStreamable<TKey,TResult>

Applies to

Multicast<TKey,TPayload>(IStreamable<TKey,TPayload>, Int32)

Performs multicast over a streamable. This allows query writers to execute multiple subqueries over the same physical input stream.

public static Microsoft.StreamProcessing.IStreamable<TKey,TPayload>[] Multicast<TKey,TPayload> (this Microsoft.StreamProcessing.IStreamable<TKey,TPayload> source, int outputCount);
static member Multicast : Microsoft.StreamProcessing.IStreamable<'Key, 'Payload> * int -> Microsoft.StreamProcessing.IStreamable<'Key, 'Payload>[]
<Extension()>
Public Function Multicast(Of TKey, TPayload) (source As IStreamable(Of TKey, TPayload), outputCount As Integer) As IStreamable(Of TKey, TPayload)()

Type Parameters

TKey
TPayload

Parameters

outputCount
Int32

Returns

IStreamable<TKey,TPayload>[]

Applies to

Multicast<TKey,TPayloadLeft,TPayloadRight,TResult>(IStreamable<TKey, TPayloadLeft>, IStreamable<TKey,TPayloadRight>, Func<IStreamable<TKey, TPayloadLeft>,IStreamable<TKey,TPayloadRight>,IStreamable<TKey, TResult>>)

Performs multicast over a streamable. This allows query writers to execute multiple subqueries over the same physical input stream.

public static Microsoft.StreamProcessing.IStreamable<TKey,TResult> Multicast<TKey,TPayloadLeft,TPayloadRight,TResult> (this Microsoft.StreamProcessing.IStreamable<TKey,TPayloadLeft> sourceLeft, Microsoft.StreamProcessing.IStreamable<TKey,TPayloadRight> sourceRight, Func<Microsoft.StreamProcessing.IStreamable<TKey,TPayloadLeft>,Microsoft.StreamProcessing.IStreamable<TKey,TPayloadRight>,Microsoft.StreamProcessing.IStreamable<TKey,TResult>> selector);
static member Multicast : Microsoft.StreamProcessing.IStreamable<'Key, 'PayloadLeft> * Microsoft.StreamProcessing.IStreamable<'Key, 'PayloadRight> * Func<Microsoft.StreamProcessing.IStreamable<'Key, 'PayloadLeft>, Microsoft.StreamProcessing.IStreamable<'Key, 'PayloadRight>, Microsoft.StreamProcessing.IStreamable<'Key, 'Result>> -> Microsoft.StreamProcessing.IStreamable<'Key, 'Result>
<Extension()>
Public Function Multicast(Of TKey, TPayloadLeft, TPayloadRight, TResult) (sourceLeft As IStreamable(Of TKey, TPayloadLeft), sourceRight As IStreamable(Of TKey, TPayloadRight), selector As Func(Of IStreamable(Of TKey, TPayloadLeft), IStreamable(Of TKey, TPayloadRight), IStreamable(Of TKey, TResult))) As IStreamable(Of TKey, TResult)

Type Parameters

TKey
TPayloadLeft
TPayloadRight
TResult

Parameters

sourceLeft
IStreamable<TKey,TPayloadLeft>
sourceRight
IStreamable<TKey,TPayloadRight>
selector
Func<IStreamable<TKey,TPayloadLeft>,IStreamable<TKey,TPayloadRight>,IStreamable<TKey,TResult>>

Returns

IStreamable<TKey,TResult>

Applies to