[-] ...an api that shouldn't exist anymore

This commit is contained in:
Reece Wilson 2023-09-16 21:12:50 +01:00
parent 7010155916
commit 6c5e99ba8f
2 changed files with 0 additions and 12 deletions

View File

@ -12,7 +12,6 @@
namespace Aurora::Async namespace Aurora::Async
{ {
struct WorkerId_t;
struct WorkerPId_t; struct WorkerPId_t;
} }
@ -32,12 +31,6 @@ namespace Aurora::Console::Commands
*/ */
AUKN_SYM bool DispatchCommandThisThread(const AuString &string); AUKN_SYM bool DispatchCommandThisThread(const AuString &string);
/**
* Parses `string` on the current thread and then schedules the ICommandSubscriber callback on the specified thread
*/
AUKN_SYM bool DispatchCommandToAsyncRunner(const AuString &string, Async::WorkerId_t id);
/** /**
* Parses `string` on the current thread and then schedules the ICommandSubscriber callback on the specified thread * Parses `string` on the current thread and then schedules the ICommandSubscriber callback on the specified thread
*/ */

View File

@ -136,11 +136,6 @@ namespace Aurora::Console::Commands
return Dispatch(string, EDispatchType::eNow, {}); return Dispatch(string, EDispatchType::eNow, {});
} }
AUKN_SYM bool DispatchCommandToAsyncRunner(const AuString &string, Async::WorkerId_t id)
{
return Dispatch(string, EDispatchType::eAsync, AuAsync::WorkerPId_t(AuUnsafeRaiiToShared(AuAsync::GetAsyncApp()), id));
}
AUKN_SYM bool DispatchCommandToAsyncRunner(const AuString &string, Async::WorkerPId_t id) AUKN_SYM bool DispatchCommandToAsyncRunner(const AuString &string, Async::WorkerPId_t id)
{ {
return Dispatch(string, EDispatchType::eAsync, id); return Dispatch(string, EDispatchType::eAsync, id);