Interface IAsyncReactiveSubject<TInput, TOutput>
Interface for subjects representing event streams that can produce and receive data.
Inherited Members
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. |