mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-03 18:10:55 +01:00
Fix missed items in thread queue
This commit is contained in:
parent
7c59d0c722
commit
71026f9692
1 changed files with 6 additions and 1 deletions
|
@ -60,7 +60,12 @@ impl ThreadQueue {
|
||||||
#[inline]
|
#[inline]
|
||||||
pub async fn wait_for_item(&self) {
|
pub async fn wait_for_item(&self) {
|
||||||
if self.queue.is_empty() {
|
if self.queue.is_empty() {
|
||||||
self.event.listen().await;
|
let listener = self.event.listen();
|
||||||
|
// NOTE: Need to check again, we could have gotten
|
||||||
|
// new queued items while creating our listener
|
||||||
|
if self.queue.is_empty() {
|
||||||
|
listener.await;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue