Class IJobEntityExtensions
Namespace: Unity.Entities
Syntax
public static class IJobEntityExtensionsMethods
| Name | Description | 
|---|---|
| Run<T>(T) | Runs the given job on the main thread. By copying the job data. | 
| Run<T>(T, EntityQuery) | |
| RunByRef<T>(T) | Runs the given job on the main thread. By referencing the job data. | 
| RunByRef<T>(T, EntityQuery) | |
| Schedule<T>(T, EntityQuery, JobHandle) | |
| Schedule<T>(T, JobHandle) | Schedules the given job to run on an arbitrary non-main thread. By copying the job data. | 
| ScheduleByRef<T>(T, EntityQuery, JobHandle) | |
| ScheduleByRef<T>(T, JobHandle) | Schedules the given job to run on an arbitrary non-main thread. By referencing the job data. | 
| ScheduleParallel<T>(T, EntityQuery, JobHandle) | |
| ScheduleParallel<T>(T, JobHandle) | Schedules the given job to run on in parallel on multiple thread(s). By copying the job data. | 
| ScheduleParallelByRef<T>(T, EntityQuery, JobHandle) | |
| ScheduleParallelByRef<T>(T, JobHandle) | Schedules the given job to run on in parallel on multiple thread(s). By referencing the job data. |