Share via


Streamable.ToAtemporalStreamable<TPayload> Method

Definition

Registers a data source to be used as input with the query container.

public static Microsoft.StreamProcessing.IIngressStreamable<Microsoft.StreamProcessing.Empty,TPayload> ToAtemporalStreamable<TPayload> (this IObservable<TPayload> data, Microsoft.StreamProcessing.TimelinePolicy timelinePolicy = null, Microsoft.StreamProcessing.OnCompletedPolicy onCompletedPolicy = null);
static member ToAtemporalStreamable : IObservable<'Payload> * Microsoft.StreamProcessing.TimelinePolicy * Microsoft.StreamProcessing.OnCompletedPolicy -> Microsoft.StreamProcessing.IIngressStreamable<Microsoft.StreamProcessing.Empty, 'Payload>

Type Parameters

TPayload

The type of the payload of the data source.

Parameters

data
IObservable<TPayload>

A sequence of data elements created by the client.

timelinePolicy
TimelinePolicy

Describes how to simulate a progression of time with the data.

onCompletedPolicy
OnCompletedPolicy

How to handle the completion of a stream.

Returns

An IStreamable that can be used in queries.

Applies to