Метод | Описание | |
---|---|---|
NewBackgroundTask ( [ callback ) : |
Creates a new SchedulerTask object to run in the background thread. Use this if your task is not very time-sensitive or frequent, or if your callback is resource-intensive.
|
|
NewBackgroundTask ( [ callback, [ userState ) : |
Creates a new SchedulerTask object to run in the background thread. Use this if your task is not very time-sensitive or frequent, or if your callback is resource-intensive.
|
|
NewTask ( [ callback ) : |
Creates a new SchedulerTask object to run in the main thread. Use this if your task is time-sensitive or frequent, and your callback won't take too long to execute.
|
|
NewTask ( [ callback, [ userState ) : |
Creates a new SchedulerTask object to run in the main thread. Use this if your task is time-sensitive or frequent, and your callback won't take too long to execute.
|
|
PrintTasks ( [ player ) : void |
Метод | Описание | |
---|---|---|
AddTask ( [ task ) : void |
Schedules a given task for execution.
|
|
BackgroundLoop ( ) : void | ||
BeginShutdown ( ) : void | ||
EndShutdown ( ) : void | ||
FireEvent ( EventHandler |
||
MainLoop ( ) : void | ||
Start ( ) : void | ||
UpdateCache ( ) : void |
public static NewBackgroundTask ( [ callback ) : |
||
callback | [ | Method to call when the task is triggered. |
Результат |
public static NewBackgroundTask ( [ callback, [ userState ) : |
||
callback | [ | Method to call when the task is triggered. |
userState | [ | Parameter to pass to the method. |
Результат |
public static NewTask ( [ callback ) : |
||
callback | [ | Method to call when the task is triggered. |
Результат |
public static NewTask ( [ callback, [ userState ) : |
||
callback | [ | Method to call when the task is triggered. |
userState | [ | Parameter to pass to the method. |
Результат |
public static PrintTasks ( [ player ) : void | ||
player | [ | |
Результат | void |