1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Settled definitively on flush as more communicative than synchronise (and slightly more locale neutral); culled some more duplication from the Z80.

This commit is contained in:
Thomas Harte
2017-05-15 07:38:59 -04:00
parent f2a1a906ff
commit eb8a2de5d6
10 changed files with 15 additions and 18 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ namespace Concurrency {
/*!
An async task queue allows a caller to enqueue void(void) functions. Those functions are guaranteed
to be performed serially and asynchronously from the caller. A caller may also request to synchronise,
to be performed serially and asynchronously from the caller. A caller may also request to flush,
causing it to block until all previously-enqueued functions are complete.
*/
class AsyncTaskQueue {