Version: Unity 6.1 (6000.1)
Language : English
Awaitable code example reference
Job system overview

Write multithreaded code with the job system

The job system lets you write simple and safe multithreaded code so that your application can use all available CPU cores to execute your code. This can help improve the performance of your application.

Topic Description
Job system overview Understand Unity’s job system.
Jobs overview Understand the type of jobs available.
Create a job Create and schedule a job.
Job dependencies Understand job dependencies.
Parallel jobs Use parallel jobs to schedule multiple jobs at once.
Thread safe types Understand thread safe types, such as NativeContainer objects.

Additional resources

Awaitable code example reference
Job system overview