AuroraRuntime/Include/Aurora/Async/IAsyncTimer.hpp
Jamie Reece Wilson 8944d8bd16 [+] IAsyncTimer
[+] IAsyncTimerCallback
[+] ETickType.hpp
[+] EWorkPriority.hpp
[+] static IThreadPool::GetSelfIOProcessor()
[+] static IThreadPool::GetSelfIONetInterface()
[+] static IThreadPool::GetSelfIONetWorker()
[-] [Source/Async/]AsyncRunnable.hpp
[*] Begin encapsulating WorkerPId_t
[*] WorkerPId_t no longer take strong pointers to prevent leaks given that these identifiers are copied and kept alive everywhere
2023-12-07 09:20:23 +00:00

18 lines
354 B
C++

/***
Copyright (C) 2023 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: IAsyncTimer.hpp
Date: 2023-12-06
Author: Reece
***/
#pragma once
namespace Aurora::Async
{
struct IAsyncTimer
{
virtual void CancelTimer() = 0;
virtual AuUInt64 GetLastTime() = 0;
virtual AuUInt64 GetTicks() = 0;
};
}