Struct AsyncComputeTask<T>
Task-like type representing asynchronous auto-observable computations.
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: TinkState
Assembly: Nadako.TinkState.dll
Syntax
public readonly struct AsyncComputeTask<T>
Type Parameters
Name | Description |
---|---|
T | Type of the computed value. |
Remarks
This must be the return type for
async
computation functions as it enables proper observable tracking at each async
function
execution step.