Struct rusteron_archive::AeronArchiveContext

source ·
pub struct AeronArchiveContext { /* private fields */ }

Implementations§

source§

impl AeronArchiveContext

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_message_timeout_ns( &self, message_timeout_ns: i64, ) -> 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) -> i64

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_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_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_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_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 get_inner(&self) -> *mut aeron_archive_context_t

source§

impl AeronArchiveContext

source

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

source

pub fn new_with_no_credentials_supplier() -> 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 T)

🔬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<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.