Function rusteron_archive::bindings::aeron_archive_list_recordings

source ยท
pub unsafe extern "C" fn aeron_archive_list_recordings(
    count_p: *mut i32,
    aeron_archive: *mut aeron_archive_t,
    from_recording_id: i64,
    record_count: i32,
    recording_descriptor_consumer: aeron_archive_recording_descriptor_consumer_func_t,
    recording_descriptor_consumer_clientd: *mut c_void,
) -> c_int
Expand description

List all recording descriptors starting at a particular recording id, with a limit of total descriptors delivered.

@param count_p out param indicating the number of descriptors found @param aeron_archive the archive client @param from_recording_id the id at which to begin the listing @param record_count the limit of total descriptors to deliver @param recording_descriptor_consumer to be called for each descriptor @param recording_descriptor_consumer_clientd to be passed for each descriptor @return 0 for success, -1 for failure