docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Class LambdaJobDescriptionExecutionMethods

    Static class holding methods to construct lambda jobs (Entities.ForEach and Job.WithCode)

    Inheritance
    object
    LambdaJobDescriptionExecutionMethods
    Namespace: Unity.Entities
    Assembly: Unity.Entities.dll
    Syntax
    public static class LambdaJobDescriptionExecutionMethods

    Methods

    Name Description
    Run<TDescription>(TDescription)

    Runs the generated job immediately on the current thread.

    ScheduleParallel<TDescription>(TDescription)

    Schedule the generated job to be run in parallel and use the Dependency property of the containing system for both the input and output dependencies. This job may run at a later point and will run the job execution in parallel.

    ScheduleParallel<TDescription>(TDescription, JobHandle)

    Schedule the generated job to be run in parallel. This job may run at a later point and will run the job execution in parallel.

    Schedule<TDescription>(TDescription)

    Schedule the generated job to be run sequentially and use the Dependency property of the containing system for both the input and output dependencies. This job may run at a later point, but will run the job execution sequentially instead of in parallel.

    Schedule<TDescription>(TDescription, JobHandle)

    Schedule the generated job to be run sequentially. This job may run at a later point, but will run the job execution sequentially instead of in parallel.

    In This Article
    Back to top
    Copyright © 2024 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)