Struct rotor_carbon::Sender [] [src]

pub struct Sender<'a, C: 'a, S>(_, _)
where
    S: ActiveStream
;

The sender object, which has convenience methods to send the data

Note Sender() holds lock on the underlying buffer and doesn't send data, until sender is dropped. This is useful for sending data in single bulk.

Methods

impl<'a, C: 'a, S: ActiveStream> Sender<'a, C, S>
[src]

Send a generic number with current timestamp

Send a generic number with specific timestamp

Trait Implementations

impl<'a, C, S: ActiveStream> Drop for Sender<'a, C, S>
[src]

A method called when the value goes out of scope. Read more