Show / Hide Table of Contents

Interface IReactiveSubject<TInput, TOutput>

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

Inherited Members
IReactiveObserver<TInput>.OnNext(TInput)
IReactiveObserver<TInput>.OnError(Exception)
IReactiveObserver<TInput>.OnCompleted()
IReactiveObservable<TOutput>.Subscribe(IReactiveObserver<TOutput>, Uri, Object)
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.

In This Article
Back to top Generated by DocFX