[][src]Struct artifice_installer::installation::TaskSchedule

pub struct TaskSchedule<E: 'static + Error + Send + Sync, DB: Database<E> + Send + Sync> { /* fields omitted */ }

this struct runs the series of jobs or tasks that actually install artifice it uses a sender and receiver to dispatch tasks and recieve the result of each of those tasks post execution

Implementations

impl<E: 'static + Error + Send + Sync, DB: 'static + Database<E> + Send + Sync> TaskSchedule<E, DB>[src]

pub fn new(thread_count: u8, timeout: Duration) -> Self[src]

allows a task list to be constructed from existing tasks, as appose to creating an empty list

pub fn add_task(&mut self, task: Task<E, DB>)[src]

pub fn run(
    self,
    database: Arc<DB>
) -> Result<(String, u16), ((String, u16), Box<dyn Error + Send + Sync>)>
[src]

consumes the task list and dispateches $thread_count threads to run each task

Auto Trait Implementations

impl<E, DB> !RefUnwindSafe for TaskSchedule<E, DB>

impl<E, DB> Send for TaskSchedule<E, DB>

impl<E, DB> !Sync for TaskSchedule<E, DB>

impl<E, DB> Unpin for TaskSchedule<E, DB> where
    E: Unpin

impl<E, DB> !UnwindSafe for TaskSchedule<E, DB>

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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