Enum AsyncRequest.ExecutionContext
An enum describing execution context for lambda functors that need to be invoked.
Namespace: Unity.Simulation
Assembly: solution.dll
Syntax
public enum AsyncRequest.ExecutionContext
Fields
| Name | Description |
|---|---|
| EndOfFrame | Invoke the callback at the end of the frame. |
| Immediate | Invoke the callback immediately. |
| JobSystem | Invoke the callback using the Unity Job System. |
| None | Execution context is unspecified. |
| ThreadPool | Invoke the callback on the C# thread pool. |