Interface IReactiveSubject<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 IReactiveSubject<in TInput, out TOutput> : IReactiveObserver<TInput>, IObserver<TInput>, IReactiveObservable<TOutput>, IDisposable
Type Parameters
Name | Description |
---|---|
TInput | Type of the data received by the subject. |
TOutput | Type of the data produced by the subject. |