pub trait RuntimeChannel<T>: Runtimewhere
    T: Debug + Send,{
    type Receiver: Stream<Item = T> + Send;
    type Sender: TrySend<Message = T> + Debug;

    // Required method
    fn batch_message_channel(
        &self,
        capacity: usize
    ) -> (Self::Sender, Self::Receiver);
}
Expand description

MessageRuntime is an extension to Runtime. Currently, it provides a channel that is used by the log and span batch processors.

Required Associated Types§

source

type Receiver: Stream<Item = T> + Send

A future stream to receive batch messages from channels.

source

type Sender: TrySend<Message = T> + Debug

A batch messages sender that can be sent across threads safely.

Required Methods§

source

fn batch_message_channel( &self, capacity: usize ) -> (Self::Sender, Self::Receiver)

Return the sender and receiver used to send batch messages.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> RuntimeChannel<T> for Tokiowhere T: Debug + Send,