[][src]Struct zeebe::Job

pub struct Job(_);

An activate Zeebe job that is ready to be worked on by a worker.

Implementations

impl Job[src]

pub fn key(&self) -> i64[src]

the key, a unique identifier for the job

pub fn job_type(&self) -> &str[src]

the type of the job (should match what was requested)

pub fn workflow_instance_key(&self) -> i64[src]

the job's workflow instance key

pub fn bpmn_process_id(&self) -> &str[src]

the bpmn process ID of the job workflow definition

pub fn workflow_definition_version(&self) -> i32[src]

the version of the job workflow definition

pub fn workflow_key(&self) -> i64[src]

the key of the job workflow definition

pub fn element_id(&self) -> &str[src]

the associated task element ID

pub fn element_instance_key(&self) -> i64[src]

the unique key identifying the associated task, unique within the scope of the workflow instance

pub fn custom_headers(&self) -> &str[src]

a set of custom headers defined during modelling; returned as a serialized JSON document

pub fn worker(&self) -> &str[src]

the name of the worker which activated this job

pub fn retries(&self) -> i32[src]

the amount of retries left to this job (should always be positive)

pub fn deadline(&self) -> i64[src]

when the job can be activated again, sent as a UNIX epoch timestamp

pub fn variables_str(&self) -> &str[src]

Serialized JSON document, computed at activation time, consisting of all visible variables to the task scope

pub fn variables(&self) -> Value[src]

JSON document, computed at activation time, consisting of all visible variables to the task scope

pub fn variables_as<'a, T: Deserialize<'a>>(&'a self) -> Option<T>[src]

Deserialize encoded json variables as a given type

Trait Implementations

impl Clone for Job[src]

impl Debug for Job[src]

Auto Trait Implementations

impl RefUnwindSafe for Job

impl Send for Job

impl Sync for Job

impl Unpin for Job

impl UnwindSafe for Job

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> IntoRequest<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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]