The return value of an asynchronous operation, which produces a result.
The result can be available before the operation has completed.
Namespace: AccessFlowAssembly: AccessFlow (in AccessFlow.dll) Version: 1.0.0.2 (1.0.0.2)
Syntaxpublic interface IReactive<out T>
Public Interface IReactive(Of Out T)
generic<typename T>
public interface class IReactive
type IReactive<'T> = interface end
Type Parameters
- T
- The type of the result.
The IReactiveT type exposes the following members.
Properties
| Name | Description |
---|
 | ProcessTask |
The execution of the operation.
Needs to be awaited so that no exceptions are ignored.
|
 | Result |
The productive result of the operation.
|
Top
See Also