Interface ISubscription
Represents the subscription to a particular stream. Dispose this subscription to end it.
Namespace: FFT.BTCMarkets
Assembly: FFT.BTCMarkets.dll
Syntax
public interface ISubscription : IAsyncDisposable
Properties
| Improve this Doc View SourceReader
Read this reader to get messages from the stream. This reader will be completed after you dispose the subscription or if the underlying connection had an issue. If the completion is due to an underlying connection issue, you will need to request a new subscription if you want to keep receiving data.
Declaration
ChannelReader<object> Reader { get; }
Property Value
| Type | Description |
|---|---|
| ChannelReader<System.Object> |