1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*!
Batch up multiple items for processing as a single unit.
*/

#![deny(missing_docs)]

#[cfg(doctest)]
use doc_comment::doctest;
#[cfg(doctest)]
doctest!("../README.md");

mod batch;
mod batcher;
mod batching;
mod error;
mod worker;

pub use batcher::{Batcher, Processor};
pub use batching::BatchingStrategy;
pub use error::BatchError;