Click or drag to resize
ReactiveCreateT Method

Namespace: AccessFlow
Assembly: AccessFlow (in AccessFlow.dll) Version: 1.0.0.2 (1.0.0.2)
Syntax
public static IReactive<T> Create<T>(
	Task processTask,
	IFuture<T> result
)

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: IReactiveT
A new IReactiveT.
See Also