This commit is contained in:
Nikolay Kim 2023-01-17 16:56:08 +01:00
parent 14737c3949
commit ce80c79091

View file

@ -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