Share via


Streamable.ToAtemporalArrayObservable Method

Definition

Overloads

ToAtemporalArrayObservable<TPayload>(IStreamable<Empty,TPayload>)

Exports a streamable as an observable of change list events. Produces events that represent either insertions or deletions.

ToAtemporalArrayObservable<TPayload>(IStreamable<Empty,TPayload>, Func<TPayload[]>)

Exports a streamable as an observable of change list events. Produces events that represent either insertions or deletions.

ToAtemporalArrayObservable<TPayload>(IStreamable<Empty,TPayload>)

Exports a streamable as an observable of change list events. Produces events that represent either insertions or deletions.

public static IObservable<ArraySegment<TPayload>> ToAtemporalArrayObservable<TPayload> (this Microsoft.StreamProcessing.IStreamable<Microsoft.StreamProcessing.Empty,TPayload> stream);
static member ToAtemporalArrayObservable : Microsoft.StreamProcessing.IStreamable<Microsoft.StreamProcessing.Empty, 'Payload> -> IObservable<ArraySegment<'Payload>>
<Extension()>
Public Function ToAtemporalArrayObservable(Of TPayload) (stream As IStreamable(Of Empty, TPayload)) As IObservable(Of ArraySegment(Of TPayload))

Type Parameters

TPayload

The type of object being streamed

Parameters

stream
IStreamable<Empty,TPayload>

An IStreamable object that is intended to be an output to the query.

Returns

An IObservable object of events for output data from the query.

Applies to

ToAtemporalArrayObservable<TPayload>(IStreamable<Empty,TPayload>, Func<TPayload[]>)

Exports a streamable as an observable of change list events. Produces events that represent either insertions or deletions.

public static IObservable<ArraySegment<TPayload>> ToAtemporalArrayObservable<TPayload> (this Microsoft.StreamProcessing.IStreamable<Microsoft.StreamProcessing.Empty,TPayload> stream, Func<TPayload[]> generator);
static member ToAtemporalArrayObservable : Microsoft.StreamProcessing.IStreamable<Microsoft.StreamProcessing.Empty, 'Payload> * Func<'Payload[]> -> IObservable<ArraySegment<'Payload>>
<Extension()>
Public Function ToAtemporalArrayObservable(Of TPayload) (stream As IStreamable(Of Empty, TPayload), generator As Func(Of TPayload())) As IObservable(Of ArraySegment(Of TPayload))

Type Parameters

TPayload

The type of object being streamed

Parameters

stream
IStreamable<Empty,TPayload>

An IStreamable object that is intended to be an output to the query.

generator
Func<TPayload[]>

A function that returns an array that will be populated with stream results.

Returns

An IObservable object of events for output data from the query.

Applies to