#object-pool #automatic #raii #return #items #duration #pattern

autoreturn-pool

A simple pool that returns items automatically after it's dropped

14 releases

0.2.1 Sep 27, 2024
0.2.0 Sep 27, 2024
0.1.5 Sep 27, 2024
0.0.6 Sep 8, 2024

#298 in Configuration

Download history 327/week @ 2024-09-26 25/week @ 2024-10-03 15/week @ 2024-10-10 3/week @ 2024-10-17 2/week @ 2024-10-31 2/week @ 2024-11-07 2/week @ 2024-11-14 1/week @ 2024-11-21 4/week @ 2024-12-05 13/week @ 2024-12-12

831 downloads per month

MIT/Apache

9KB
151 lines

autoreturn-pool

This pool automatically manages the return of objects.

The primary difference from competitors is the interface - implementation follows the RAII pattern, meaning the user must provide objects when creating the pool.

The Pool class has only three public methods:

  • Constructor with_config(config: Config, items): Creates a new pool with a custom configuration.
  • Constructor new(items): An alias for with_config that uses the default configuration.
  • take(&self): Extracts an object from the pool.

The configuration allows you to set the wait duration for the take method (default is Duration::MAX, which essentially means "Wait until you receive it").

Examples:


fn main() -> Result<(), autoreturn_pool::Error> {
    // basic usage
    let pool = autoreturn_pool::Pool::new([1, 2])?;
    let item = pool.take()?.unwrap();

    // with custom config
    let config = autoreturn_pool::Config {
        wait_duration: std::time::Duration::from_millis(5),
    };
    let pool = autoreturn_pool::Pool::with_config(config, [1, 2])?;
    let item = pool.take()?.unwrap();
}
// with custom object:
#[derive(Default)]
struct MyObject {
    value: i32,
}
fn main() -> Result<(), autoreturn_pool::Error> {
    let pool_objects = [
        MyObject::default(),
        MyObject::default()
    ];
    let pool = autoreturn_pool::Pool::new(pool_objects)?;
    let mut item = pool.take()?.unwrap();
    Ok(())
}

Dependencies

~0.4–5MB
~12K SLoC