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
9fd6959316
commit
0a20cddd27
2 changed files with 13 additions and 9 deletions
|
@ -152,7 +152,12 @@ impl Arbiter {
|
|||
}
|
||||
}
|
||||
|
||||
fn with_sender(sys_id: usize, id: usize, name: Arc<String>, sender: Sender<ArbiterCommand>) -> Self {
|
||||
fn with_sender(
|
||||
sys_id: usize,
|
||||
id: usize,
|
||||
name: Arc<String>,
|
||||
sender: Sender<ArbiterCommand>,
|
||||
) -> Self {
|
||||
Self {
|
||||
id,
|
||||
sys_id,
|
||||
|
|
|
@ -121,11 +121,10 @@ impl System {
|
|||
///
|
||||
/// This method should be called from the context where the system has been initialized
|
||||
pub fn list_arbiters<F, R>(f: F) -> R
|
||||
where F: FnOnce(&[Arbiter]) -> R,
|
||||
where
|
||||
F: FnOnce(&[Arbiter]) -> R,
|
||||
{
|
||||
ARBITERS.with(|arbs| {
|
||||
f(arbs.borrow().list.as_ref())
|
||||
})
|
||||
ARBITERS.with(|arbs| f(arbs.borrow().list.as_ref()))
|
||||
}
|
||||
|
||||
pub(super) fn sys(&self) -> &Sender<SystemCommand> {
|
||||
|
@ -185,18 +184,18 @@ pub(super) enum SystemCommand {
|
|||
pub(super) struct SystemSupport {
|
||||
stop: Option<oneshot::Sender<i32>>,
|
||||
commands: Receiver<SystemCommand>,
|
||||
ping_interval: usize,
|
||||
_ping_interval: usize,
|
||||
}
|
||||
|
||||
impl SystemSupport {
|
||||
pub(super) fn new(
|
||||
stop: oneshot::Sender<i32>,
|
||||
commands: Receiver<SystemCommand>,
|
||||
ping_interval: usize,
|
||||
_ping_interval: usize,
|
||||
) -> Self {
|
||||
Self {
|
||||
commands,
|
||||
ping_interval,
|
||||
_ping_interval,
|
||||
stop: Some(stop),
|
||||
}
|
||||
}
|
||||
|
@ -241,7 +240,7 @@ impl SystemSupport {
|
|||
for (idx, arb) in arbiters.list.iter().enumerate() {
|
||||
if &hnd == arb {
|
||||
arbiters.list.remove(idx);
|
||||
break
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue