Share via


Streamable.RegisterBinaryOutput Method

Definition

Overloads

RegisterBinaryOutput<TKey,TPayload>(QueryContainer, IStreamable<TKey,TPayload>, String, String)

Serialize streamble into a binary file

RegisterBinaryOutput<TKey,TPayload>(QueryContainer, IStreamable<TKey,TPayload>, Stream, Boolean, String)

Serialize streamable into a binary stream

RegisterBinaryOutput<TKey,TPayload>(QueryContainer, IStreamable<TKey,TPayload>, String, String)

Serialize streamble into a binary file

public static void RegisterBinaryOutput<TKey,TPayload> (this Microsoft.StreamProcessing.QueryContainer container, Microsoft.StreamProcessing.IStreamable<TKey,TPayload> input, string fileName, string identifier = null);
static member RegisterBinaryOutput : Microsoft.StreamProcessing.QueryContainer * Microsoft.StreamProcessing.IStreamable<'Key, 'Payload> * string * string -> unit
<Extension()>
Public Sub RegisterBinaryOutput(Of TKey, TPayload) (container As QueryContainer, input As IStreamable(Of TKey, TPayload), fileName As String, Optional identifier As String = null)

Type Parameters

TKey
TPayload

Parameters

container
QueryContainer

The query container to which an egress point is being added.

fileName
String
identifier
String

A string that can uniquely identify the point of egress in the query.

Applies to

RegisterBinaryOutput<TKey,TPayload>(QueryContainer, IStreamable<TKey,TPayload>, Stream, Boolean, String)

Serialize streamable into a binary stream

public static void RegisterBinaryOutput<TKey,TPayload> (this Microsoft.StreamProcessing.QueryContainer container, Microsoft.StreamProcessing.IStreamable<TKey,TPayload> input, System.IO.Stream binaryStream, bool writePropertiesToStream = false, string identifier = null);
static member RegisterBinaryOutput : Microsoft.StreamProcessing.QueryContainer * Microsoft.StreamProcessing.IStreamable<'Key, 'Payload> * System.IO.Stream * bool * string -> unit
<Extension()>
Public Sub RegisterBinaryOutput(Of TKey, TPayload) (container As QueryContainer, input As IStreamable(Of TKey, TPayload), binaryStream As Stream, Optional writePropertiesToStream As Boolean = false, Optional identifier As String = null)

Type Parameters

TKey
TPayload

Parameters

container
QueryContainer

The query container to which an egress point is being added.

binaryStream
Stream
writePropertiesToStream
Boolean
identifier
String

A string that can uniquely identify the point of egress in the query.

Applies to