适用于使用 IJobFor 的作业的扩展方法。
| 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 | 在主线程中立即执行作业的 Execute 方法。 |
| RunByRef | 在主线程中立即执行作业的 Execute 方法。 |
| Schedule | 调度要在单个工作线程中执行的作业。 |
| ScheduleByRef | 调度要在单个工作线程中执行的作业。 |
| ScheduleParallel | 调度要在很多工作线程中并发执行的作业。 |
| ScheduleParallelByRef | 调度要在很多工作线程中并发执行的作业。 |