pub struct BatchProcessor { /* private fields */ }Expand description
Batch processor for parallel input processing
When scirs2-core parallel features are available, uses multi-threaded processing. Falls back to sequential processing otherwise.
Implementations§
Source§impl BatchProcessor
impl BatchProcessor
Sourcepub fn with_threads(num_threads: usize) -> Self
pub fn with_threads(num_threads: usize) -> Self
Create a batch processor with specific thread count
Sourcepub fn num_threads(&self) -> usize
pub fn num_threads(&self) -> usize
Get the number of threads
Sourcepub fn process_batch<F, T, R>(&self, inputs: &[T], f: F) -> Vec<R>
pub fn process_batch<F, T, R>(&self, inputs: &[T], f: F) -> Vec<R>
Process a batch of inputs
Uses parallel processing via scirs2-core when available.
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 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