Namespace: AccessFlowAssembly: AccessFlow (in AccessFlow.dll) Version: 1.0.0.2 (1.0.0.2)
Syntaxpublic static IFuture<T> Create<T>(
IAwaiter<T> awaiter
)
Public Shared Function Create(Of T) (
awaiter As IAwaiter(Of T)
) As IFuture(Of T)
public:
generic<typename T>
static IFuture<T>^ Create(
IAwaiter<T>^ awaiter
)
static member Create :
awaiter : IAwaiter<'T> -> IFuture<'T>
Parameters
- awaiter
- Type: AccessFlowIAwaiterT
The IAwaiterT the
IFutureT to create is based on.
Type Parameters
- T
-
The type of the value represented by the IFutureT.
Return Value
Type:
IFutureTThe newly created
IFutureT.
See Also