[][src]Struct meli::jobs::JobExecutor

pub struct JobExecutor {
    global_queue: Arc<Injector<MeliTask>>,
    workers: Vec<Stealer<MeliTask>>,
    sender: Sender<ThreadEvent>,
    parkers: Vec<Unparker>,
    timers: Arc<Mutex<HashMap<Uuid, TimerPrivate>>>,
}

Fields

global_queue: Arc<Injector<MeliTask>>workers: Vec<Stealer<MeliTask>>sender: Sender<ThreadEvent>parkers: Vec<Unparker>timers: Arc<Mutex<HashMap<Uuid, TimerPrivate>>>

Implementations

impl JobExecutor[src]

pub fn new(sender: Sender<ThreadEvent>) -> Self[src]

A queue that holds scheduled tasks.

pub fn spawn_specialized<F, R>(&self, future: F) -> JoinHandle<R> where
    F: Future<Output = R> + Send + 'static,
    R: Send + 'static, 
[src]

Spawns a future with a generic return value R

pub fn spawn_blocking<F, R>(&self, future: F) -> JoinHandle<R> where
    F: Future<Output = R> + Send + 'static,
    R: Send + 'static, 
[src]

Spawns a future with a generic return value R that might block on a new thread

pub fn create_timer(
    self: Arc<JobExecutor>,
    interval: Duration,
    value: Duration
) -> Timer
[src]

pub fn rearm(&self, timer_id: Uuid)[src]

fn arm_timer(&self, id: Uuid, value: Duration)[src]

fn disable_timer(&self, id: Uuid)[src]

Trait Implementations

impl Debug for JobExecutor[src]

Auto Trait Implementations

impl !RefUnwindSafe for JobExecutor

impl Send for JobExecutor

impl Sync for JobExecutor

impl Unpin for JobExecutor

impl !UnwindSafe for JobExecutor

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]