twilight_gateway_queue/
lib.rs1#![doc = include_str!("../README.md")]
2#![warn(
3 clippy::missing_const_for_fn,
4 clippy::missing_docs_in_private_items,
5 clippy::pedantic,
6 missing_docs,
7 unsafe_code
8)]
9#![allow(clippy::module_name_repetitions, clippy::must_use_candidate)]
10
11mod in_memory;
12
13pub use in_memory::InMemoryQueue;
14
15use tokio::{sync::oneshot, time::Duration};
16
17pub const IDENTIFY_DELAY: Duration = Duration::from_secs(5);
19
20pub const LIMIT_PERIOD: Duration = Duration::from_secs(60 * 60 * 24);
23
24pub trait Queue {
26 fn enqueue(&self, id: u32) -> oneshot::Receiver<()>;
33}
34
35impl<T> Queue for &T
36where
37 T: Queue,
38{
39 fn enqueue(&self, shard: u32) -> oneshot::Receiver<()> {
40 (**self).enqueue(shard)
41 }
42}
43
44#[cfg(test)]
45mod tests {
46 use super::Queue;
47 use static_assertions::assert_obj_safe;
48
49 assert_obj_safe!(Queue);
50}