rusteron_archive

Struct AeronArchiveContext

Source
pub struct AeronArchiveContext { /* private fields */ }

Implementations§

Source§

impl AeronArchiveContext

Source

pub fn new() -> Result<Self, AeronCError>

Create an AeronArchiveContext struct.

Source

pub fn close(&self) -> Result<i32, AeronCError>

Close and delete the AeronArchiveContext struct.

Source

pub fn set_aeron(&self, aeron: &Aeron) -> Result<i32, AeronCError>

Specify the client used for communicating with the local Media Driver.

This client will be closed with the AeronArchive is closed if aeron_archive_context_set_owns_aeron_client is true.

Source

pub fn get_aeron(&self) -> Aeron

Source

pub fn set_owns_aeron_client( &self, owns_aeron_client: bool, ) -> Result<i32, AeronCError>

Specify whether or not this context owns the client and, therefore, takes responsibility for closing it.

Source

pub fn get_owns_aeron_client(&self) -> bool

Source

pub fn set_aeron_directory_name( &self, aeron_directory_name: &str, ) -> Result<i32, AeronCError>

Specify the top level Aeron directory used for communication between the Aeron client and the Media Driver.

Source

pub fn get_aeron_directory_name(&self) -> &str

Source

pub fn set_control_request_channel( &self, control_request_channel: &str, ) -> Result<i32, AeronCError>

Specify the channel used for sending requests to the Aeron Archive.

Source

pub fn get_control_request_channel(&self) -> &str

Source

pub fn set_control_request_stream_id( &self, control_request_stream_id: i32, ) -> Result<i32, AeronCError>

Specify the stream used for sending requests to the Aeron Archive.

Source

pub fn get_control_request_stream_id(&self) -> i32

Source

pub fn set_control_response_channel( &self, control_response_channel: &str, ) -> Result<i32, AeronCError>

Specify the channel used for receiving responses from the Aeron Archive.

Source

pub fn get_control_response_channel(&self) -> &str

Source

pub fn set_control_response_stream_id( &self, control_response_stream_id: i32, ) -> Result<i32, AeronCError>

Specify the stream used for receiving responses from the Aeron Archive.

Source

pub fn get_control_response_stream_id(&self) -> i32

Source

pub fn set_recording_events_channel( &self, recording_events_channel: &str, ) -> Result<i32, AeronCError>

Specify the channel used for receiving recording events from the Aeron Archive.

Source

pub fn get_recording_events_channel(&self) -> &str

Source

pub fn set_recording_events_stream_id( &self, recording_events_stream_id: i32, ) -> Result<i32, AeronCError>

Specify the stream id used for recording events channel.

Source

pub fn get_recording_events_stream_id(&self) -> i32

Source

pub fn set_message_timeout_ns( &self, message_timeout_ns: u64, ) -> Result<i32, AeronCError>

Specify the message timeout, in nanoseconds, to wait for sending or receiving a message.

Source

pub fn get_message_timeout_ns(&self) -> u64

Source

pub fn set_control_term_buffer_length( &self, control_term_buffer_length: usize, ) -> Result<i32, AeronCError>

Specify the default term buffer length for the control request/response channels.

Source

pub fn get_control_term_buffer_length(&self) -> usize

Source

pub fn set_control_mtu_length( &self, control_mtu_length: usize, ) -> Result<i32, AeronCError>

Specify the default MTU length for the control request/response channels.

Source

pub fn get_control_mtu_length(&self) -> usize

Source

pub fn set_control_term_buffer_sparse( &self, control_term_buffer_sparse: bool, ) -> Result<i32, AeronCError>

Specify the default MTU length for the control request/response channels.

Source

pub fn get_control_term_buffer_sparse(&self) -> bool

Source

pub fn set_idle_strategy<AeronIdleStrategyFuncHandlerImpl: AeronIdleStrategyFuncCallback>( &self, idle_strategy_func: Option<&Handler<AeronIdleStrategyFuncHandlerImpl>>, ) -> Result<i32, AeronCError>

Specify the idle strategy function and associated state used by the client between polling calls.

Source

pub fn set_idle_strategy_once<AeronIdleStrategyFuncHandlerImpl: FnMut(c_int)>( &self, idle_strategy_func: AeronIdleStrategyFuncHandlerImpl, ) -> Result<i32, AeronCError>

Specify the idle strategy function and associated state used by the client between polling calls.

NOTE: aeron must not store this closure and instead use it immediately. If not you will get undefined behaviour, use with care

Source

pub fn set_credentials_supplier<AeronArchiveCredentialsFreeFuncHandlerImpl: AeronArchiveCredentialsFreeFuncCallback>( &self, encoded_credentials: aeron_archive_credentials_encoded_credentials_supplier_func_t, on_challenge: aeron_archive_credentials_challenge_supplier_func_t, on_free: Option<&Handler<AeronArchiveCredentialsFreeFuncHandlerImpl>>, ) -> Result<i32, AeronCError>

Specify the various credentials callbacks to use when connecting to the Aeron Archive.

Source

pub fn set_credentials_supplier_once<AeronArchiveCredentialsFreeFuncHandlerImpl: FnMut(AeronArchiveEncodedCredentials)>( &self, encoded_credentials: aeron_archive_credentials_encoded_credentials_supplier_func_t, on_challenge: aeron_archive_credentials_challenge_supplier_func_t, on_free: AeronArchiveCredentialsFreeFuncHandlerImpl, ) -> Result<i32, AeronCError>

Specify the various credentials callbacks to use when connecting to the Aeron Archive.

NOTE: aeron must not store this closure and instead use it immediately. If not you will get undefined behaviour, use with care

Source

pub fn set_recording_signal_consumer<AeronArchiveRecordingSignalConsumerFuncHandlerImpl: AeronArchiveRecordingSignalConsumerFuncCallback>( &self, on_recording_signal: Option<&Handler<AeronArchiveRecordingSignalConsumerFuncHandlerImpl>>, ) -> Result<i32, AeronCError>

Specify the callback to which recording signals are dispatched while polling for control responses.

Source

pub fn set_recording_signal_consumer_once<AeronArchiveRecordingSignalConsumerFuncHandlerImpl: FnMut(AeronArchiveRecordingSignal)>( &self, on_recording_signal: AeronArchiveRecordingSignalConsumerFuncHandlerImpl, ) -> Result<i32, AeronCError>

Specify the callback to which recording signals are dispatched while polling for control responses.

NOTE: aeron must not store this closure and instead use it immediately. If not you will get undefined behaviour, use with care

Source

pub fn set_error_handler<AeronErrorHandlerHandlerImpl: AeronErrorHandlerCallback>( &self, error_handler: Option<&Handler<AeronErrorHandlerHandlerImpl>>, ) -> Result<i32, AeronCError>

Specify the callback to which errors are dispatched while executing archive client commands.

Source

pub fn set_error_handler_once<AeronErrorHandlerHandlerImpl: FnMut(c_int, &str)>( &self, error_handler: AeronErrorHandlerHandlerImpl, ) -> Result<i32, AeronCError>

Specify the callback to which errors are dispatched while executing archive client commands.

NOTE: aeron must not store this closure and instead use it immediately. If not you will get undefined behaviour, use with care

Source

pub fn set_delegating_invoker<AeronArchiveDelegatingInvokerFuncHandlerImpl: AeronArchiveDelegatingInvokerFuncCallback>( &self, delegating_invoker_func: Option<&Handler<AeronArchiveDelegatingInvokerFuncHandlerImpl>>, ) -> Result<i32, AeronCError>

Specify the callback to be invoked in addition to any invoker used by the Aeron instance.

Useful when running in a low thread count environment.

Source

pub fn set_delegating_invoker_once<AeronArchiveDelegatingInvokerFuncHandlerImpl: FnMut()>( &self, delegating_invoker_func: AeronArchiveDelegatingInvokerFuncHandlerImpl, ) -> Result<i32, AeronCError>

Specify the callback to be invoked in addition to any invoker used by the Aeron instance.

Useful when running in a low thread count environment.

NOTE: aeron must not store this closure and instead use it immediately. If not you will get undefined behaviour, use with care

Source

pub fn get_inner(&self) -> *mut aeron_archive_context_t

Source§

impl AeronArchiveContext

Source§

impl AeronArchiveContext

Source§

impl AeronArchiveContext

Source

pub fn set_no_credentials_supplier(&self) -> Result<i32, AeronCError>

Source

pub fn new_with_no_credentials_supplier( aeron: &Aeron, request_control_channel: &str, response_control_channel: &str, recording_events_channel: &str, ) -> Result<AeronArchiveContext, AeronCError>

This method creates a new AeronArchiveContext with a no-op credentials supplier. If you do not set a credentials supplier, it will segfault. This method ensures that a non-functional credentials supplier is set to avoid the segfault.

Trait Implementations§

Source§

impl Clone for AeronArchiveContext

Source§

fn clone(&self) -> AeronArchiveContext

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AeronArchiveContext

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Deref for AeronArchiveContext

Source§

type Target = aeron_archive_context_stct

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl From<&AeronArchiveContext> for *mut aeron_archive_context_t

Source§

fn from(value: &AeronArchiveContext) -> Self

Converts to this type from the input type.
Source§

impl From<*const aeron_archive_context_stct> for AeronArchiveContext

Source§

fn from(value: *const aeron_archive_context_t) -> Self

Converts to this type from the input type.
Source§

impl From<*mut aeron_archive_context_stct> for AeronArchiveContext

Source§

fn from(value: *mut aeron_archive_context_t) -> Self

Converts to this type from the input type.
Source§

impl From<AeronArchiveContext> for *mut aeron_archive_context_t

Source§

fn from(value: AeronArchiveContext) -> Self

Converts to this type from the input type.
Source§

impl From<AeronArchiveContext> for aeron_archive_context_t

Source§

fn from(value: AeronArchiveContext) -> Self

Converts to this type from the input type.
Source§

impl From<aeron_archive_context_stct> for AeronArchiveContext

Source§

fn from(value: aeron_archive_context_t) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.