Subscriptions
サブスクリプションは、リアクティブな計算を実行するための IDisposable ハンドルに相当する IRP です。サブスクリプションは、オブザーバのビルトインSubscribeAsyncメソッドを介して、またはサブスクリプションファクトリを介して作成されます。IAsyncReactiveQubscriptionの定義は、単にサブスクリプションを廃棄する方法を提供します。
Subscriptions are the IRP analog to IDisposable handles to running reactive computations. Subscriptions are created through the built-in SubscribeAsync method on observables, or through subscription factories. The definition of an IAsyncReactiveQubscription simply provides a way to dispose the subscription:
code:C#
interface IAsyncReactiveQubscription : IAsyncDisposable {}