mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
better api usability
This commit is contained in:
parent
79afb61b03
commit
d89f1c29c6
5 changed files with 91 additions and 27 deletions
|
@ -655,11 +655,11 @@ fn pool() {
|
|||
async fn pool_usage() {
|
||||
use ntex::{time, util};
|
||||
|
||||
PoolId::set_spawn_fn(|f| {
|
||||
PoolId::set_spawn_fn_all(|f| {
|
||||
let _ = ntex::rt::spawn(f);
|
||||
});
|
||||
|
||||
let p_ref = PoolId::P1.pool_ref().set_pool_size(10 * 1024);
|
||||
let p_ref = PoolId::P1.set_pool_size(10 * 1024);
|
||||
let p1 = p_ref.pool();
|
||||
let p2 = p_ref.pool();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue