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 workflow.
See https://docs.zeebe.io/basics/job-workers.html#what-is-a-job for details on jobs.
func (*Job) GetCustomHeadersAs ¶
GetCustomHeadersAs unmarshals the JSON representation of a workflow's custom headers into type t.
Unlike variables, custom headers are specific to a workflow, as opposed to a workflow instance.
func (*Job) GetCustomHeadersAsMap ¶
GetCustomHeadersAsMap returns a map of a workflow's custom headers.
Unlike variables, custom headers are specific to a workflow, as opposed to a workflow instance.
func (*Job) GetVariablesAs ¶
GetVariablesAs unmarshals the JSON representation of a workflow instance's variables into type t.
See https://docs.zeebe.io/reference/variables.html for details on workflow variables.
func (*Job) GetVariablesAsMap ¶
GetVariablesAsMap returns a map of a workflow instance's variables.
See https://docs.zeebe.io/reference/variables.html for details on workflow variables.