잡을 예약하려면 다음을 수행해야 합니다.
Schedule
을 호출하면 적절한 시점에 실행되도록 잡을 잡 대기열에 넣습니다. 예약된 잡은 인터럽트할 수 없습니다.
참고: 잡에서는 Schedule
을 호출할 수 없습니다.
// Create a native array of a single float to store the result. This example waits for the job to complete for illustration purposes
NativeArray<float> result = new NativeArray<float>(1, Allocator.TempJob);
// Set up the job data
MyJob jobData = new MyJob();
jobData.a = 10;
jobData.b = 10;
jobData.result = result;
// Schedule the job
JobHandle handle = jobData.Schedule();
// Wait for the job to complete
handle.Complete();
// All copies of the NativeArray point to the same memory, you can access the result in "your" copy of the NativeArray
float aPlusB = result[0];
// Free the memory allocated by the result array
result.Dispose();
2018–06–15 페이지 게시됨
2018.1에서 공개된 C# 잡 시스템 NewIn20181