mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
parent
e3eeaee542
commit
8c3e8ebfd9
27 changed files with 176 additions and 287 deletions
|
@ -18,7 +18,7 @@ default = []
|
|||
simd = ["simdutf8"]
|
||||
|
||||
[dependencies]
|
||||
bitflags = "1.3"
|
||||
bitflags = "2.4"
|
||||
bytes = "1.0.0"
|
||||
serde = "1.0.0"
|
||||
futures-core = { version = "0.3", default-features = false, features = ["alloc"] }
|
||||
|
|
|
@ -979,7 +979,7 @@ impl PartialEq for Bytes {
|
|||
|
||||
impl PartialOrd for Bytes {
|
||||
fn partial_cmp(&self, other: &Bytes) -> Option<cmp::Ordering> {
|
||||
self.inner.as_ref().partial_cmp(other.inner.as_ref())
|
||||
Some(self.cmp(other))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@ pub struct BufParams {
|
|||
}
|
||||
|
||||
bitflags::bitflags! {
|
||||
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
|
||||
struct Flags: u8 {
|
||||
const SPAWNED = 0b0000_0001;
|
||||
const INCREASED = 0b0000_0010;
|
||||
|
@ -116,8 +117,7 @@ impl PoolId {
|
|||
where
|
||||
T: Fn(Pin<Box<dyn Future<Output = ()>>>) + 'static,
|
||||
{
|
||||
let spawn: Rc<dyn Fn(Pin<Box<dyn Future<Output = ()>>>)> =
|
||||
Rc::new(move |fut| f(fut));
|
||||
let spawn: Rc<dyn Fn(Pin<Box<dyn Future<Output = ()>>>)> = Rc::new(f);
|
||||
|
||||
POOLS.with(move |pools| {
|
||||
*pools[self.0 as usize].spawn.borrow_mut() = Some(spawn.clone());
|
||||
|
@ -131,8 +131,7 @@ impl PoolId {
|
|||
where
|
||||
T: Fn(Pin<Box<dyn Future<Output = ()>>>) + 'static,
|
||||
{
|
||||
let spawn: Rc<dyn Fn(Pin<Box<dyn Future<Output = ()>>>)> =
|
||||
Rc::new(move |fut| f(fut));
|
||||
let spawn: Rc<dyn Fn(Pin<Box<dyn Future<Output = ()>>>)> = Rc::new(f);
|
||||
|
||||
POOLS.with(move |pools| {
|
||||
for pool in pools.iter().take(15) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue