pub trait ProductStreamsConcurrencyController: Send + Sync {
// Required method
fn init(
&self,
init_max_bidi_streams: u64,
init_max_uni_streams: u64,
) -> Box<dyn ControlStreamsConcurrency>;
}
pub trait ProductStreamsConcurrencyController: Send + Sync {
// Required method
fn init(
&self,
init_max_bidi_streams: u64,
init_max_uni_streams: u64,
) -> Box<dyn ControlStreamsConcurrency>;
}