Skip to main content

AeronFlowControlStrategySetupFuncCallback

Trait AeronFlowControlStrategySetupFuncCallback 

Source
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§

Source

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§

Source§

impl AeronFlowControlStrategySetupFuncCallback for AeronFlowControlStrategySetupFuncLogger

Source§

impl AeronFlowControlStrategySetupFuncCallback for NoHandler

Source§

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.

Source§

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.