Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AsyncTaskHelper.cs
Go to the documentation of this file.
1using System;
3
5
6public class AsyncTaskHelper
7{
9
14
15 public void RunAsyncTaskAndReply(Action task, Action replay)
16 {
17 Task.Factory.StartNew(delegate
18 {
19 task();
21 });
22 }
23
24 public void RunAsyncTask(Action task)
25 {
26 Task.Factory.StartNew(task);
27 }
28}
static new TaskFactory< TResult > Factory
Definition Task.cs:56
void RunAsyncTaskAndReply(Action task, Action replay)