pub struct BatchProcessor { /* private fields */ }Expand description
Lock-free queue for batch processing operations
Implementations§
Source§impl BatchProcessor
impl BatchProcessor
Sourcepub fn new(num_threads: usize) -> Self
pub fn new(num_threads: usize) -> Self
Create a new batch processor with specified thread count
Sourcepub fn push(&self, operation: BatchOperation)
pub fn push(&self, operation: BatchOperation)
Add an operation to the batch queue
Sourcepub fn process_batch(&self, batch_size: usize) -> Result<usize, OxirsError>
pub fn process_batch(&self, batch_size: usize) -> Result<usize, OxirsError>
Process all pending operations in batches
Sourcepub fn stats(&self) -> BatchStats
pub fn stats(&self) -> BatchStats
Get current processing statistics
Sourcepub fn pending_operations(&self) -> usize
pub fn pending_operations(&self) -> usize
Get the number of pending operations
Trait Implementations§
Source§impl Debug for BatchProcessor
impl Debug for BatchProcessor
Auto Trait Implementations§
impl !Freeze for BatchProcessor
impl !RefUnwindSafe for BatchProcessor
impl Send for BatchProcessor
impl Sync for BatchProcessor
impl Unpin for BatchProcessor
impl UnsafeUnpin for BatchProcessor
impl !UnwindSafe for BatchProcessor
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
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more