Enum AsyncRequest.ExecutionContext
An enum describing execution context for lambda functors that need to be invoked.
Namespace: Unity.Simulation
Syntax
public enum ExecutionContext
Fields
| Name | Description | Value |
|---|---|---|
| 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. |