Function libaeron_sys::aeron_subscription_for_each_image

source ยท
pub unsafe extern "C" fn aeron_subscription_for_each_image(
    subscription: *mut aeron_subscription_t,
    handler: Option<unsafe extern "C" fn(image: *mut aeron_image_t, clientd: *mut c_void)>,
    clientd: *mut c_void
)
Expand description

Iterate over the images for this subscription calling the given function.

@param subscription to iterate over. @param handler to be called for each image. @param clientd to be passed to the handler.