#[non_exhaustive]pub struct PipeSourceActiveMqBrokerParameters { /* private fields */ }
Expand description
The parameters for using an Active MQ broker as a source.
Implementations§
source§impl PipeSourceActiveMqBrokerParameters
impl PipeSourceActiveMqBrokerParameters
sourcepub fn credentials(&self) -> Option<&MqBrokerAccessCredentials>
pub fn credentials(&self) -> Option<&MqBrokerAccessCredentials>
The credentials needed to access the resource.
sourcepub fn queue_name(&self) -> Option<&str>
pub fn queue_name(&self) -> Option<&str>
The name of the destination queue to consume.
sourcepub fn batch_size(&self) -> Option<i32>
pub fn batch_size(&self) -> Option<i32>
The maximum number of records to include in each batch.
sourcepub fn maximum_batching_window_in_seconds(&self) -> Option<i32>
pub fn maximum_batching_window_in_seconds(&self) -> Option<i32>
The maximum length of a time to wait for events.
source§impl PipeSourceActiveMqBrokerParameters
impl PipeSourceActiveMqBrokerParameters
sourcepub fn builder() -> PipeSourceActiveMqBrokerParametersBuilder
pub fn builder() -> PipeSourceActiveMqBrokerParametersBuilder
Creates a new builder-style object to manufacture PipeSourceActiveMqBrokerParameters
.
Trait Implementations§
source§impl Clone for PipeSourceActiveMqBrokerParameters
impl Clone for PipeSourceActiveMqBrokerParameters
source§fn clone(&self) -> PipeSourceActiveMqBrokerParameters
fn clone(&self) -> PipeSourceActiveMqBrokerParameters
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<PipeSourceActiveMqBrokerParameters> for PipeSourceActiveMqBrokerParameters
impl PartialEq<PipeSourceActiveMqBrokerParameters> for PipeSourceActiveMqBrokerParameters
source§fn eq(&self, other: &PipeSourceActiveMqBrokerParameters) -> bool
fn eq(&self, other: &PipeSourceActiveMqBrokerParameters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PipeSourceActiveMqBrokerParameters
Auto Trait Implementations§
impl RefUnwindSafe for PipeSourceActiveMqBrokerParameters
impl Send for PipeSourceActiveMqBrokerParameters
impl Sync for PipeSourceActiveMqBrokerParameters
impl Unpin for PipeSourceActiveMqBrokerParameters
impl UnwindSafe for PipeSourceActiveMqBrokerParameters
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more