pub struct ClientConfigValidator;Expand description
Validator for ClientConfig fields
Provides validation methods for all configuration parameters, ensuring they meet RocketMQ requirements.
Implementations§
Source§impl ClientConfigValidator
impl ClientConfigValidator
Sourcepub const MIN_POLL_NAME_SERVER_INTERVAL: u32 = 10_000
pub const MIN_POLL_NAME_SERVER_INTERVAL: u32 = 10_000
Minimum poll name server interval (10 seconds)
Sourcepub const MAX_POLL_NAME_SERVER_INTERVAL: u32 = 600_000
pub const MAX_POLL_NAME_SERVER_INTERVAL: u32 = 600_000
Maximum poll name server interval (10 minutes)
Sourcepub const MIN_HEARTBEAT_BROKER_INTERVAL: u32 = 10_000
pub const MIN_HEARTBEAT_BROKER_INTERVAL: u32 = 10_000
Minimum heartbeat broker interval (10 seconds)
Sourcepub const MAX_HEARTBEAT_BROKER_INTERVAL: u32 = 600_000
pub const MAX_HEARTBEAT_BROKER_INTERVAL: u32 = 600_000
Maximum heartbeat broker interval (10 minutes)
Sourcepub const MIN_PERSIST_CONSUMER_OFFSET_INTERVAL: u32 = 1_000
pub const MIN_PERSIST_CONSUMER_OFFSET_INTERVAL: u32 = 1_000
Minimum persist consumer offset interval (1 second)
Sourcepub const MAX_PERSIST_CONSUMER_OFFSET_INTERVAL: u32 = 60_000
pub const MAX_PERSIST_CONSUMER_OFFSET_INTERVAL: u32 = 60_000
Maximum persist consumer offset interval (1 minute)
Sourcepub const MIN_TRACE_MSG_BATCH_NUM: usize = 1
pub const MIN_TRACE_MSG_BATCH_NUM: usize = 1
Minimum trace message batch number
Sourcepub const MAX_TRACE_MSG_BATCH_NUM: usize = 10_000
pub const MAX_TRACE_MSG_BATCH_NUM: usize = 10_000
Maximum trace message batch number
Sourcepub const MIN_MAX_PAGE_SIZE_IN_GET_METADATA: usize = 1
pub const MIN_MAX_PAGE_SIZE_IN_GET_METADATA: usize = 1
Minimum max page size in get metadata
Sourcepub const MAX_MAX_PAGE_SIZE_IN_GET_METADATA: usize = 100_000
pub const MAX_MAX_PAGE_SIZE_IN_GET_METADATA: usize = 100_000
Maximum max page size in get metadata
Sourcepub const MIN_MQ_CLIENT_API_TIMEOUT: u64 = 100
pub const MIN_MQ_CLIENT_API_TIMEOUT: u64 = 100
Minimum MQ client API timeout (100ms)
Sourcepub const MAX_MQ_CLIENT_API_TIMEOUT: u64 = 60_000
pub const MAX_MQ_CLIENT_API_TIMEOUT: u64 = 60_000
Maximum MQ client API timeout (60 seconds)
Sourcepub fn validate_poll_name_server_interval(interval: u32) -> RocketMQResult<()>
pub fn validate_poll_name_server_interval(interval: u32) -> RocketMQResult<()>
Validate poll name server interval
Ensures the interval is between 10 seconds and 10 minutes.
Sourcepub fn validate_heartbeat_broker_interval(interval: u32) -> RocketMQResult<()>
pub fn validate_heartbeat_broker_interval(interval: u32) -> RocketMQResult<()>
Validate heartbeat broker interval
Ensures the interval is between 10 seconds and 10 minutes.
Sourcepub fn validate_persist_consumer_offset_interval(
interval: u32,
) -> RocketMQResult<()>
pub fn validate_persist_consumer_offset_interval( interval: u32, ) -> RocketMQResult<()>
Validate persist consumer offset interval
Ensures the interval is between 1 second and 1 minute.
Sourcepub fn validate_trace_msg_batch_num(num: usize) -> RocketMQResult<()>
pub fn validate_trace_msg_batch_num(num: usize) -> RocketMQResult<()>
Validate trace message batch number
Ensures the batch number is between 1 and 10,000.
Sourcepub fn validate_max_page_size_in_get_metadata(size: usize) -> RocketMQResult<()>
pub fn validate_max_page_size_in_get_metadata(size: usize) -> RocketMQResult<()>
Validate max page size in get metadata
Ensures the page size is between 1 and 100,000.
Sourcepub fn validate_mq_client_api_timeout(timeout: u64) -> RocketMQResult<()>
pub fn validate_mq_client_api_timeout(timeout: u64) -> RocketMQResult<()>
Validate MQ client API timeout
Ensures the timeout is between 100ms and 60 seconds.
Sourcepub fn validate_concurrent_heartbeat_thread_pool_size(
size: usize,
) -> RocketMQResult<()>
pub fn validate_concurrent_heartbeat_thread_pool_size( size: usize, ) -> RocketMQResult<()>
Validate concurrent heartbeat thread pool size
Ensures the thread pool size is greater than 0 and doesn’t exceed a reasonable maximum (CPU cores * 4).
Sourcepub fn validate_client_callback_executor_threads(
threads: usize,
) -> RocketMQResult<()>
pub fn validate_client_callback_executor_threads( threads: usize, ) -> RocketMQResult<()>
Validate client callback executor threads
Ensures the thread count is greater than 0.
Auto Trait Implementations§
impl Freeze for ClientConfigValidator
impl RefUnwindSafe for ClientConfigValidator
impl Send for ClientConfigValidator
impl Sync for ClientConfigValidator
impl Unpin for ClientConfigValidator
impl UnsafeUnpin for ClientConfigValidator
impl UnwindSafe for ClientConfigValidator
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
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.