pub trait BalancedChannelBuilder {
type Error;
// Required method
fn balanced_channel(
self,
buffer_size: usize,
) -> Result<(Channel, Sender<Change<Uri, Endpoint>>), Self::Error>;
}Expand description
Creates a balanced channel.