pub trait AeronFlowControlStrategySetupFuncCallback {
// Required method
fn handle_aeron_flow_control_strategy_on_setup_func(
&mut self,
setup: &[u8],
now_ns: i64,
snd_lmt: i64,
position_bits_to_shift: usize,
snd_pos: i64,
) -> i64;
}Expand description
(note you must copy any arguments that you use afterwards even those with static lifetimes)
Required Methods§
fn handle_aeron_flow_control_strategy_on_setup_func( &mut self, setup: &[u8], now_ns: i64, snd_lmt: i64, position_bits_to_shift: usize, snd_pos: i64, ) -> i64
Implementors§
impl AeronFlowControlStrategySetupFuncCallback for AeronFlowControlStrategySetupFuncLogger
impl AeronFlowControlStrategySetupFuncCallback for NoHandler
impl<F: FnMut(&[u8], i64, i64, usize, i64) -> i64> AeronFlowControlStrategySetupFuncCallback for F
Any closure with the matching signature is a callback: methods that retain it
heap-allocate it into a Handler owned by the registering resource.
impl<T: AeronFlowControlStrategySetupFuncCallback> AeronFlowControlStrategySetupFuncCallback for Handler<T>
Pass an existing Handler clone anywhere a callback value is expected, e.g.
to share one callback instance across several registrations.