Interface IDynamicMultiSubject
A multi-subject that can be typed at runtime.
Namespace: Reaqtive
Assembly: Reaqtive.Interfaces.dll
Syntax
public interface IDynamicMultiSubject : IMultiSubject, IDisposable
Methods
ToTyped<TInput, TOutput>()
Creates a typed version of the untyped multi-subject.
Declaration
IMultiSubject<TInput, TOutput> ToTyped<TInput, TOutput>()
Returns
| Type | Description |
|---|---|
| IMultiSubject<TInput, TOutput> | The typed multi-subject. |
Type Parameters
| Name | Description |
|---|---|
| TInput | The input element type of the typed multi-subject. |
| TOutput | The output element type of the typed multi-subject. |