Skip to main content

SharedState

Struct SharedState 

Source
pub struct SharedState {
    pub shutdown: Arc<AtomicBool>,
    pub task_counter: Arc<AtomicU64>,
    pub global_queue: Arc<Mutex<VecDeque<TaskId>>>,
    pub results: Arc<Mutex<HashMap<TaskId, RtObject>>>,
}
Expand description

Thread-safe shared state for the scheduler.

In a real multi-threaded implementation, this would be accessed by multiple worker threads.

Fields§

§shutdown: Arc<AtomicBool>

Whether the scheduler should stop.

§task_counter: Arc<AtomicU64>

Global task counter.

§global_queue: Arc<Mutex<VecDeque<TaskId>>>

Shared global queue.

§results: Arc<Mutex<HashMap<TaskId, RtObject>>>

Shared task results.

Implementations§

Source§

impl SharedState

Source

pub fn new() -> Self

Create new shared state.

Source

pub fn request_shutdown(&self)

Request shutdown.

Source

pub fn should_shutdown(&self) -> bool

Check if shutdown was requested.

Source

pub fn next_task_id(&self) -> TaskId

Generate a new task ID.

Source

pub fn push_task(&self, task_id: TaskId)

Push a task to the global queue.

Source

pub fn pop_task(&self) -> Option<TaskId>

Pop a task from the global queue.

Source

pub fn store_result(&self, task_id: TaskId, result: RtObject)

Store a task result.

Source

pub fn get_result(&self, task_id: TaskId) -> Option<RtObject>

Get a task result.

Trait Implementations§

Source§

impl Debug for SharedState

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for SharedState

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.