Struct spring_batch_rs::core::step::StepBuilder
source · pub struct StepBuilder<'a, R, W> { /* private fields */ }Implementations§
source§impl<'a, R, W> StepBuilder<'a, R, W>
impl<'a, R, W> StepBuilder<'a, R, W>
pub fn new() -> StepBuilder<'a, R, W>
pub fn reader(self, reader: &'a impl ItemReader<R>) -> StepBuilder<'a, R, W>
pub fn processor( self, processor: &'a impl ItemProcessor<R, W> ) -> StepBuilder<'a, R, W>
pub fn writer(self, writer: &'a impl ItemWriter<W>) -> StepBuilder<'a, R, W>
pub fn chunk(self, chunk_size: usize) -> StepBuilder<'a, R, W>
pub fn skip_limit(self, skip_limit: usize) -> StepBuilder<'a, R, W>
pub fn build(self) -> Step<'a, R, W>where
DefaultProcessor: ItemProcessor<R, W>,
Trait Implementations§
Auto Trait Implementations§
impl<'a, R, W> !RefUnwindSafe for StepBuilder<'a, R, W>
impl<'a, R, W> !Send for StepBuilder<'a, R, W>
impl<'a, R, W> !Sync for StepBuilder<'a, R, W>
impl<'a, R, W> Unpin for StepBuilder<'a, R, W>
impl<'a, R, W> !UnwindSafe for StepBuilder<'a, R, W>
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