#Park an `AssetLoader`'s `BoxedFuture`
1 messages · Page 1 of 1 (latest)
I'm looking at https://docs.rs/event-listener/latest/event_listener/, and it says it works for async, but it doesn't have an async wait function, so I suspect the future will still be updated. Idk much about async, though, I could be wrong
Oh, I can run .await directly on an EventListener, maybe that's what I need
You can use pollster or futures_lite, both have a block_on
If you're in an async context, you should absolutely just .await it
Good to know, thanks. I can't test it rn bc I'm in the middle of a refactor, but I'll just mark as resolved