Extension methods for Jobs using the IJob interface.
| Method | Description |
|---|---|
| EarlyJobInit | Gathers and caches reflection data for the internal job system's managed bindings. Unity is responsible for calling this method - don't call it yourself. |
| Run | Perform the job's Execute method immediately on the same thread. |
| RunByRef | Perform the job's Execute method immediately on the same thread. |
| Schedule | Schedule the job for execution on a worker thread. |
| ScheduleByRef | Schedule the job for execution on a worker thread. |