Show / Hide Table of Contents

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 Source

Reader

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>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX