1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
//! Time utilities for vector-core
use std::task::{Context, Poll};
/// A trait for representing a timer which holds multiple subtimers, mapped by an arbitrary key, `K`.
///
/// Embedding time as a type into other types eases property testing and verification. As such,
/// this trait represents the minimum functionality required to describe management of keyed timers
/// for the types implemented in this crate that require such behavior.
///
/// Users can look at `vector_stream::batcher::ExpirationQueue` for a concrete implementation.
pub trait KeyedTimer<K> {
/// Clear the timer.
///
/// Clears all keys from the timer. Future calls to `poll_expired` will return `None` until
/// another key is added.
fn clear(&mut self);
/// Insert a new subtimer, keyed by `K`.
///
/// If the given key already exists in the timer, the underlying subtimer is reset.
fn insert(&mut self, item_key: K);
/// Removes a subtimer from the list.
fn remove(&mut self, item_key: &K);
/// Attempts to pull out the next expired subtimer in the queue.
///
/// The key of the subtimer is returned if it has expired, otherwise, returns `None` if the
/// the queue is exhausted.
///
/// Unlike a typical stream, returning `None` only indicates that the queue
/// is empty, not that the queue will never return anything else in the future.
///
/// Used primarily for property testing vis-รก-vis `vector_stream::batcher::Batcher`.
fn poll_expired(&mut self, cx: &mut Context) -> Poll<Option<K>>;
}