jobData | The job and data to schedule. |
arrayLength | The number of iterations to execute the for loop over. |
dependency | The JobHandle of the job's dependency. You can use dependencies to make sure that a job executes on worker threads after the dependency has completed execution and two jobs that read or write to same data don't run in parallel. |
JobHandle
The JobHandle of the scheduled job. You can use the JobHandle
as a dependency for a later job or to make sure that the job
completes on the main thread.
Schedules the job to execute on a single worker thread by reference.
Additional resources: IJobFor.