메소드 | 설명 | |
---|---|---|
EnqueueQuickCallback ( this test, System.Action callback ) : void |
Enqueues a method into the task queue. The method will run immediately following the previous work item, and may not leave any time before executing the next. This is a specialized method to be used for performance improvements.
|
|
EnqueueQuickConditional ( this test, Func |
Enqueues a conditional statement into the task queue. The method will run immediately following the previous work item, and may not leave any time before executing the next. This is a specialized method to be used for performance improvements.
|
|
EnqueueQuickWorkItem ( this test, |
Enqueues a work item into the task queue. The work item will run immediately following the previous work item, and may not leave any time before executing the next. This is a specialized method to be used for performance improvements.
|
public static EnqueueQuickCallback ( this test, System.Action callback ) : void | ||
test | this | The work item test. |
callback | System.Action | The callback action or method. |
리턴 | void |
public static EnqueueQuickConditional ( this test, Func |
||
test | this | The work item test. |
conditional | Func |
The conditional function or statement. |
리턴 | void |
public static EnqueueQuickWorkItem ( this test, |
||
test | this | The work item test. |
workItem | The unit of work. | |
리턴 | void |