mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Clippy
This commit is contained in:
parent
14737c3949
commit
ce80c79091
1 changed files with 7 additions and 3 deletions
|
@ -1,7 +1,5 @@
|
|||
use async_channel::Sender;
|
||||
use std::{
|
||||
cell::RefCell, future::Future, io, sync::atomic::AtomicUsize, sync::atomic::Ordering,
|
||||
};
|
||||
use std::{cell::RefCell, sync::atomic::AtomicUsize, sync::atomic::Ordering};
|
||||
|
||||
use super::arbiter::{Arbiter, SystemCommand};
|
||||
use super::builder::{Builder, SystemRunner};
|
||||
|
@ -89,6 +87,12 @@ impl System {
|
|||
&self.sys
|
||||
}
|
||||
|
||||
/// Return status of 'stop_on_panic' option which controls whether the System is stopped when an
|
||||
/// uncaught panic is thrown from a worker thread.
|
||||
pub fn stop_on_panic(&self) -> bool {
|
||||
self.stop_on_panic
|
||||
}
|
||||
|
||||
/// System arbiter
|
||||
pub fn arbiter(&self) -> &Arbiter {
|
||||
&self.arbiter
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue