rusteron_client

Trait AeronFragmentHandlerCallback

Source
pub trait AeronFragmentHandlerCallback {
    // Required method
    fn handle_aeron_fragment_handler(
        &mut self,
        buffer: &'static [u8],
        header: AeronHeader,
    );
}
Expand description

Callback for handling fragments of data being read from a log.

The frame will either contain a whole message or a fragment of a message to be reassembled. Messages are fragmented if greater than the frame for MTU in length.

@param clientd passed to the poll function. @param buffer containing the data. @param length of the data in bytes. @param header representing the meta data for the data.

(note you must copy any arguments that you use afterwards even those with static lifetimes)

Required Methods§

Source

fn handle_aeron_fragment_handler( &mut self, buffer: &'static [u8], header: AeronHeader, )

Implementors§