pub trait AeronNotificationCallback {
// Required method
fn handle_aeron_notification(&mut self);
}
Expand description
Generalised notification callback.
(note you must copy any arguments that you use afterwards even those with static lifetimes)