zoukankan      html  css  js  c++  java
  • 安排工作

    要在主线程中安排作业,您必须:

    • 实例化作业。
    • 填充作业的数据。
    • 调用Schedule方法。

    调用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();
  • 相关阅读:
    BeautifulSoup
    requests
    安装xpath helper
    取消搜狗输入法的快捷键
    numpy初识 old
    Jupyter Notebook 快捷键
    安装numpy、matplotlib
    JavaScript 继承 -JavaScript高级程序设计
    mac /windows
    unicode 地址
  • 原文地址:https://www.cnblogs.com/longsl/p/11313149.html
Copyright © 2011-2022 走看看