struct BatchProcessor<P, C, S>where
P: RecordProcessor + Send + Sync + 'static,
C: KinesisClientTrait + Send + Sync + Clone + 'static,
S: CheckpointStore + Send + Sync + Clone + 'static,{
ctx: ProcessingContext<P, C, S>,
}
Fields§
§ctx: ProcessingContext<P, C, S>
Implementations§
source§impl<P, C, S> BatchProcessor<P, C, S>where
P: RecordProcessor + Send + Sync + 'static,
C: KinesisClientTrait + Send + Sync + Clone + 'static,
S: CheckpointStore + Send + Sync + Clone + 'static,
impl<P, C, S> BatchProcessor<P, C, S>where
P: RecordProcessor + Send + Sync + 'static,
C: KinesisClientTrait + Send + Sync + Clone + 'static,
S: CheckpointStore + Send + Sync + Clone + 'static,
async fn process_batch( &self, shard_id: &str, records: &[Record], shutdown_rx: &mut Receiver<bool>, ) -> Result<BatchProcessingResult>
async fn process_single_record( &self, record: &Record, shard_id: &str, shutdown_rx: &mut Receiver<bool>, ) -> Result<RecordProcessingResult<P::Item>>
async fn attempt_process_record( &self, record: &Record, shard_id: &str, attempt_number: u32, ) -> Result<Option<P::Item>, ProcessingError>
fn update_batch_result( &self, result: &mut BatchProcessingResult, processed_items: &mut Vec<P::Item>, record_result: RecordProcessingResult<P::Item>, )
async fn handle_checkpointing( &self, shard_id: &str, result: &BatchProcessingResult, processed_items: &[P::Item], shutdown_rx: &mut Receiver<bool>, ) -> Result<()>
async fn try_checkpoint( &self, shard_id: &str, sequence: &str, processed_items: &[P::Item], metadata: &CheckpointMetadata<'_>, ) -> Result<(), BeforeCheckpointError>
async fn send_success_event(&self, shard_id: &str, sequence: &str)
async fn send_failure_event( &self, shard_id: &str, sequence: &str, error: String, )
async fn send_attempt_event( &self, shard_id: &str, sequence: &str, attempt: u32, success: bool, error: Option<String>, )
async fn send_checkpoint_success(&self, shard_id: &str, sequence: &str)
async fn send_batch_metrics( &self, shard_id: &str, result: &BatchProcessingResult, duration: Duration, )
Auto Trait Implementations§
impl<P, C, S> Freeze for BatchProcessor<P, C, S>
impl<P, C, S> RefUnwindSafe for BatchProcessor<P, C, S>
impl<P, C, S> Send for BatchProcessor<P, C, S>
impl<P, C, S> Sync for BatchProcessor<P, C, S>
impl<P, C, S> Unpin for BatchProcessor<P, C, S>
impl<P, C, S> UnwindSafe for BatchProcessor<P, C, S>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 moreCreates a shared type from an unshared type.