pub trait AeronNewSubscriptionCallback {
    // Required method
    fn handle_aeron_on_new_subscription(
        &mut self,
        async_: AeronAsyncAddSubscription,
        channel: &str,
        stream_id: i32,
        correlation_id: i64,
    );
}
Expand description

Function called by aeron_client_t to deliver notification that the media driver has added an aeron_subscription_t successfully.

Implementations should do the minimum work for handing off state to another thread for later processing.

@param clientd to be returned in the call @param async associated with the original aeron_add_async_subscription call @param channel of the subscription @param stream_id within the channel of the subscription @param session_id of the subscription @param correlation_id used by the subscription

Required Methods§

source

fn handle_aeron_on_new_subscription( &mut self, async_: AeronAsyncAddSubscription, channel: &str, stream_id: i32, correlation_id: i64, )

Implementors§