Show / Hide Table of Contents

Interface IAsyncReactiveSubject<TInput, TOutput>

Interface for subjects representing event streams that can produce and receive data.

Inherited Members
IAsyncReactiveObserver<TInput>.OnNextAsync(TInput, CancellationToken)
IAsyncReactiveObserver<TInput>.OnErrorAsync(Exception, CancellationToken)
IAsyncReactiveObserver<TInput>.OnCompletedAsync(CancellationToken)
IAsyncReactiveObservable<TOutput>.SubscribeAsync(IAsyncReactiveObserver<TOutput>, Uri, Object, CancellationToken)
Namespace: Reaqtor
Assembly: Reaqtor.Local.Model.dll
Syntax
public interface IAsyncReactiveSubject<in TInput, out TOutput> : IAsyncReactiveObserver<TInput>, IAsyncReactiveObservable<TOutput>, IAsyncDisposable
Type Parameters
Name Description
TInput

Type of the data received by the subject.

TOutput

Type of the data produced by the subject.

In This Article
Back to top Generated by DocFX