Table of Contents

Interface IStreamingEndpoint<TEntity>

Namespace
TypedRest.Endpoints.Reactive
Assembly
TypedRest.Reactive.dll

Endpoint for a stream of TEntitys.

public interface IStreamingEndpoint<out TEntity> : IEndpoint

Type Parameters

TEntity

The type of individual elements in the stream.

Inherited Members

Methods

GetObservable()

Provides an observable stream of entities. The observable is cold; HTTP communication only starts on Subscribe(IObserver<T>).

IObservable<out TEntity> GetObservable()

Returns

IObservable<TEntity>