Remove todo about single message queues
Because we just did that.
This commit is contained in:
parent
47b75fd020
commit
57e751d277
|
@ -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
|
/// 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
|
/// 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.
|
/// 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>
|
pub(crate) trait EventLoop<T, E>
|
||||||
where
|
where
|
||||||
T: Send + 'static,
|
T: Send + 'static,
|
||||||
|
|
Loading…
Reference in a new issue