Interface IStreamingEndpoint<TEntity>
Endpoint for a stream of TEntity
s.
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>