Documentation ¶
Overview ¶
Package entities contains representations of Zeebe entities.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Job ¶
type Job struct {
*pb.ActivatedJob
}
Job represents a single work item of a process.
See https://docs.camunda.io/docs/product-manuals/concepts/job-workers/#job-queueing for details on jobs.
func (*Job) GetCustomHeadersAs ¶
GetCustomHeadersAs unmarshals the JSON representation of a process's custom headers into type t.
Unlike variables, custom headers are specific to a process, as opposed to a process instance.
func (*Job) GetCustomHeadersAsMap ¶
GetCustomHeadersAsMap returns a map of a process's custom headers.
Unlike variables, custom headers are specific to a process, as opposed to a process instance.
func (*Job) GetVariablesAs ¶
GetVariablesAs unmarshals the JSON representation of a process instance's variables into type t.
See https://docs.camunda.io/docs/product-manuals/concepts/variables for details on process variables.
func (*Job) GetVariablesAsMap ¶
GetVariablesAsMap returns a map of a process instance's variables.
See https://docs.camunda.io/docs/product-manuals/concepts/variables for details on process variables.