2021-06-27 21:33:58 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
|
|
|
File: Schedular.hpp
|
|
|
|
Date: 2021-6-26
|
|
|
|
Author: Reece
|
|
|
|
***/
|
2021-06-27 21:25:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Aurora::Async
|
|
|
|
{
|
2021-11-05 17:34:23 +00:00
|
|
|
struct IThreadPoolInternal;
|
|
|
|
|
2021-06-30 12:00:32 +00:00
|
|
|
void InitSched();
|
2021-07-15 16:16:23 +00:00
|
|
|
void DeinitSched();
|
|
|
|
void StartSched();
|
|
|
|
void StopSched();
|
2021-06-30 12:00:32 +00:00
|
|
|
|
2021-11-05 17:34:23 +00:00
|
|
|
void Schedule(AuUInt64 ns, IThreadPoolInternal *pool, WorkerId_t target, AuSPtr<IAsyncRunnable> runnable);
|
|
|
|
void TerminateSceduledTasks(IThreadPoolInternal *pool, WorkerId_t target);
|
2021-06-27 21:25:29 +00:00
|
|
|
}
|