mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
wip
This commit is contained in:
parent
bf34d51646
commit
420aaf0c96
5 changed files with 17 additions and 10 deletions
|
@ -9,7 +9,7 @@
|
|||
[](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
|
||||

|
||||
[](https://codecov.io/gh/ntex-rs/ntex)
|
||||
[](https://discord.com/channels/919288597826387979/919288597826387982)
|
||||
[](https://discord.gg/4GtaeP5Uqu)
|
||||
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -63,11 +63,6 @@ impl Counter {
|
|||
fn poll_available(&self, cx: &mut task::Context<'_>) -> bool {
|
||||
self.0.available(cx)
|
||||
}
|
||||
|
||||
/// Get total number of acquired counts
|
||||
pub fn total(&self) -> usize {
|
||||
self.0.count.get()
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
@ -90,8 +85,8 @@ impl Drop for CounterGuard {
|
|||
|
||||
impl CounterInner {
|
||||
fn inc(&self) {
|
||||
let num = self.count.get();
|
||||
self.count.set(num + 1);
|
||||
let num = self.count.get() + 1;
|
||||
self.count.set(num);
|
||||
if num == self.capacity {
|
||||
self.task.wake();
|
||||
}
|
||||
|
|
|
@ -118,6 +118,7 @@ mod tests {
|
|||
|
||||
let srv = Pipeline::new(InFlightService::new(1, SleepService(rx))).bind();
|
||||
assert_eq!(lazy(|cx| srv.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
||||
assert_eq!(lazy(|cx| srv.poll_not_ready(cx)).await, Poll::Pending);
|
||||
|
||||
let srv2 = srv.clone();
|
||||
ntex::rt::spawn(async move {
|
||||
|
|
|
@ -194,7 +194,7 @@ macro_rules! variant_impl ({$mod_name:ident, $enum_type:ident, $srv_type:ident,
|
|||
|
||||
impl<V1: fmt::Debug, V1C, $($T: fmt::Debug,)+ V1R, $($R,)+> fmt::Debug for $fac_type<V1, V1C, $($T,)+ V1R, $($R,)+> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
f.debug_struct(stringify!(fac_type))
|
||||
f.debug_struct("Variant")
|
||||
.field("V1", &self.V1)
|
||||
$(.field(stringify!($T), &self.$T))+
|
||||
.finish()
|
||||
|
@ -295,11 +295,16 @@ mod tests {
|
|||
|
||||
#[ntex_macros::rt_test2]
|
||||
async fn test_variant() {
|
||||
let factory = variant(fn_factory(|| async { Ok::<_, ()>(Srv1) }))
|
||||
let factory = variant(fn_factory(|| async { Ok::<_, ()>(Srv1) }));
|
||||
assert!(format!("{:?}", factory).contains("Variant"));
|
||||
|
||||
let factory = factory
|
||||
.v2(fn_factory(|| async { Ok::<_, ()>(Srv2) }))
|
||||
.clone()
|
||||
.v3(fn_factory(|| async { Ok::<_, ()>(Srv2) }))
|
||||
.clone();
|
||||
assert!(format!("{:?}", factory).contains("Variant"));
|
||||
|
||||
let service = factory.pipeline(&()).await.unwrap().clone();
|
||||
|
||||
let mut f = pin::pin!(service.not_ready());
|
||||
|
|
|
@ -166,6 +166,12 @@ impl Deadline {
|
|||
}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
/// Wait when `Sleep` instance get elapsed.
|
||||
pub async fn wait(&self) {
|
||||
poll_fn(|cx| self.poll_elapsed(cx)).await
|
||||
}
|
||||
|
||||
/// Resets the `Deadline` instance to a new deadline.
|
||||
///
|
||||
/// Calling this function allows changing the instant at which the `Deadline`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue