mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Add future OnDrop support
This commit is contained in:
parent
71ba4d28a3
commit
1518356f6f
2 changed files with 3 additions and 1 deletions
|
@ -9,12 +9,14 @@ mod join;
|
|||
mod lazy;
|
||||
mod ready;
|
||||
mod select;
|
||||
mod on_drop;
|
||||
|
||||
pub use self::either::Either;
|
||||
pub use self::join::{join, join_all};
|
||||
pub use self::lazy::{lazy, Lazy};
|
||||
pub use self::ready::Ready;
|
||||
pub use self::select::select;
|
||||
pub use self::on_drop::{OnDropFn, OnDropFutureExt};
|
||||
|
||||
/// An owned dynamically typed Future for use in cases where
|
||||
/// you can't statically type your result or need to add some indirection.
|
||||
|
|
|
@ -257,7 +257,7 @@ where
|
|||
server,
|
||||
client: Client::build().finish(),
|
||||
}
|
||||
.set_client_timeout(Seconds(45), Millis(45_000))
|
||||
.set_client_timeout(Seconds(60), Millis(60_000))
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue