pub trait AeronReservedValueSupplierCallback {
// Required method
fn handle_aeron_reserved_value_supplier(
&mut self,
buffer: *mut u8,
frame_length: usize,
) -> i64;
}
Expand description
Function called when filling in the reserved value field of a message.
@param clientd passed to the offer function. @param buffer of the entire frame, including Aeron data header. @param frame_length of the entire frame.