Add Default impl to oneshots pool

This commit is contained in:
Nikolay Kim 2022-01-27 18:02:36 +06:00
parent 9fc02c5555
commit b026e0fda7
4 changed files with 16 additions and 1 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.1.13] - 2022-01-28
* Add Default impl to oneshots pool
## [0.1.12] - 2022-01-27
* Reduce size of Millis

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-util"
version = "0.1.12"
version = "0.1.13"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for ntex framework"
keywords = ["network", "framework", "async", "futures"]

View file

@ -10,6 +10,8 @@ pub fn new<T>() -> Pool<T> {
Pool(Cell::new(Slab::new()))
}
pub type OneshotsPool<T> = Pool<T>;
/// Futures-aware, pool of one-shot's.
pub struct Pool<T>(Cell<Slab<Inner<T>>>);
@ -28,6 +30,12 @@ struct Inner<T> {
rx_waker: LocalWaker,
}
impl<T> Default for Pool<T> {
fn default() -> Pool<T> {
new()
}
}
impl<T> Pool<T> {
/// Create a new one-shot channel.
pub fn channel(&self) -> (Sender<T>, Receiver<T>) {

View file

@ -1,6 +1,9 @@
use std::{convert::TryInto, ops};
/// A Duration type to represent a span of time.
///
/// This type is designed for timeouts. Milliseconds resolution
/// is too small to keep generic time.
#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Millis(pub u32);