1
0
Fork 0

Remove todo about single message queues

Because we just did that.
This commit is contained in:
Robbert van der Helm 2023-01-06 18:05:52 +01:00
parent 47b75fd020
commit 57e751d277

View file

@ -34,9 +34,6 @@ pub(crate) const TASK_QUEUE_CAPACITY: usize = 512;
/// This is never used generically, but having this as a trait will cause any missing functions on
/// an implementation to show up as compiler errors even when using a different platform. And since
/// the tasks and executor will be sent to a thread, they need to have static lifetimes.
///
/// TODO: At some point rethink the design to make it possible to have a singleton message queue for
/// all instances of a plugin.
pub(crate) trait EventLoop<T, E>
where
T: Send + 'static,