[][src]Trait dipstick::QueuedInput

pub trait QueuedInput: Input + Send + Sync + 'static + Sized {
    fn queued(self, max_size: usize) -> InputQueue { ... }
}

Wrap this output behind an asynchronous metrics dispatch queue. This is not strictly required for multi threading since the provided scopes are already Send + Sync but might be desired to lower the latency

Provided methods

fn queued(self, max_size: usize) -> InputQueue

Wrap this output with an asynchronous dispatch queue of specified length.

Loading content...

Implementors

impl QueuedInput for Log
[src]

fn queued(self, max_size: usize) -> InputQueue
[src]

Loading content...