mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Add Default impl to oneshots pool
This commit is contained in:
parent
9fc02c5555
commit
b026e0fda7
4 changed files with 16 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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>) {
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue