Namespace: AccessFlowAssembly: AccessFlow (in AccessFlow.dll) Version: 1.0.0.2 (1.0.0.2)
Syntaxpublic static IReactive<T> Create<T>(
Task processTask,
IFuture<T> result
)
Public Shared Function Create(Of T) (
processTask As Task,
result As IFuture(Of T)
) As IReactive(Of T)
public:
generic<typename T>
static IReactive<T>^ Create(
Task^ processTask,
IFuture<T>^ result
)
static member Create :
processTask : Task *
result : IFuture<'T> -> IReactive<'T>
Parameters
- processTask
- Type: System.Threading.TasksTask
The representation of the complete execution of the execution.
- result
- Type: AccessFlowIFutureT
The promise of the result of the function execution.
Type Parameters
- T
-
The result of the function execution represented
by the created IReactiveT.
Return Value
Type:
IReactiveTA new
IReactiveT.
See Also