pub trait AeronPublicationErrorFrameHandlerCallback {
// Required method
fn handle_aeron_publication_error_frame_handler(
&mut self,
error_frame: AeronPublicationErrorValues,
);
}
Expand description
The error frame handler to be called when the driver notifies the client about an error frame being received.
The data passed to this callback will only be valid for the lifetime of the callback. The user should use
aeron_publication_error_values_copy
if they require the data to live longer than that.