[][src]Struct zeebest::JobWorker

pub struct JobWorker { /* fields omitted */ }

A worker will activate zeebe jobs and us the job handler to process those jobs concurrently.

Methods

impl JobWorker[src]

pub fn new<F>(
    worker: String,
    job_type: String,
    timeout: i64,
    max_amount: u16,
    panic_option: PanicOption,
    client: Client,
    job_handler: F
) -> Self where
    F: Fn(ActivatedJob) -> Pin<Box<dyn Future<Output = JobResult> + Send>> + Send + Sync + 'static, 
[src]

pub fn activate_and_process_jobs(
    self
) -> Pin<Box<dyn Future<Output = ()> + Send>>
[src]

Activates a batch of jobs and processes each job with the job handler. Will not activate more jobs that max_concurrent_jobs - current_job_count.

Trait Implementations

impl Clone for JobWorker[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T