Class MultiSubject
Provides a set of methods to create multi-subjects.
Inheritance
System.Object
MultiSubject
Namespace: Reaqtive
Assembly: Reaqtive.Core.dll
Syntax
public static class MultiSubject : Object
Methods
ToTyped<TInput, TOutput>(IMultiSubject)
Converts a non-generic multi-subject to the generic variety.
Declaration
public static IMultiSubject<TInput, TOutput> ToTyped<TInput, TOutput>(this IMultiSubject subject)
Parameters
Type | Name | Description |
---|---|---|
IMultiSubject | subject | The multi-subject to wrap. |
Returns
Type | Description |
---|---|
IMultiSubject<TInput, TOutput> | The wrapped multi-subject. |
Type Parameters
Name | Description |
---|---|
TInput | The observer-side type of the subject. |
TOutput | The observable-side type of the subject. |