[][src]Trait dipstick::QueuedOutput

pub trait QueuedOutput: Output + Sized {
    fn queued(self, max_size: usize) -> OutputQueue { ... }
}

Wrap this raw output behind an asynchronous metrics dispatch queue.

Provided methods

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

Wrap this output with an asynchronous dispatch queue.

Loading content...

Implementors

impl QueuedOutput for Graphite[src]

impl QueuedOutput for Prometheus[src]

impl QueuedOutput for Statsd[src]

impl<W: Write + Send + Sync + 'static> QueuedOutput for Stream<W>[src]

Loading content...