Skip to main content

AeronFlowControlStrategyErrorFuncCallback

Trait AeronFlowControlStrategyErrorFuncCallback 

Source
pub trait AeronFlowControlStrategyErrorFuncCallback {
    // Required method
    fn handle_aeron_flow_control_strategy_on_error_func(
        &mut self,
        error: &[u8],
        recv_addr: SockaddrStorage,
        now_ns: 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_error_func( &mut self, error: &[u8], recv_addr: SockaddrStorage, now_ns: i64, )

Implementors§

Source§

impl AeronFlowControlStrategyErrorFuncCallback for AeronFlowControlStrategyErrorFuncLogger

Source§

impl AeronFlowControlStrategyErrorFuncCallback for NoHandler

Source§

impl<F: FnMut(&[u8], SockaddrStorage, i64)> AeronFlowControlStrategyErrorFuncCallback 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: AeronFlowControlStrategyErrorFuncCallback> AeronFlowControlStrategyErrorFuncCallback for Handler<T>

Pass an existing Handler clone anywhere a callback value is expected, e.g. to share one callback instance across several registrations.