Use Scheduler.ThreadPool

This commit is contained in:
TORISOUP
2018-04-19 01:14:40 +09:00
parent d7d1ad4bf9
commit bc31e2d600
6 changed files with 135 additions and 132 deletions

View File

@@ -1,6 +1,8 @@
namespace UniTask
using System;
namespace UniTask
{
public interface IScheduler
public interface IScheduler : IDisposable
{
void Enqueue(TaskChain item);
}