Liking cljdoc? Tell your friends :D

conductor.workflow-resource


delete-workflowclj

(delete-workflow options workflow-id & args)

Takes a options,workflow-id and an optional archive-workflow boolean. Deletes the workflow execution. Returns nil

Takes a options,workflow-id and an optional archive-workflow boolean. Deletes the workflow execution.
Returns nil
sourceraw docstring

delete-workflow-with-clientclj

(delete-workflow-with-client client workflow-id)
(delete-workflow-with-client client workflow-id archive-workflow)

Takes a client,workflow-id and an optional archive-workflow boolean. Deletes the workflow execution. Returns nil

Takes a client,workflow-id and an optional archive-workflow boolean. Deletes the workflow execution.
Returns nil
sourceraw docstring

get-running-workflowclj

(get-running-workflow options wf-name version)

Takes options, workflow-name and a version. Returns a list of running workflow ids

Takes options, workflow-name and a version.
Returns a list of running workflow ids
sourceraw docstring

get-running-workflow-with-clientclj

(get-running-workflow-with-client client wf-name version)

Takes a client,workflow-name and a version. Returns a list of running workflow ids

Takes a client,workflow-name and a version.
Returns a list of running workflow ids
sourceraw docstring

get-workflowclj

(get-workflow options workflow-id & args)

Returns a workflow execution for given workflow-id

Returns a workflow execution for given workflow-id
sourceraw docstring

get-workflow-by-time-periodclj

(get-workflow-by-time-period options wf-name version start-time end-time)

Takes options, workflow-name version start-time and end-time (in milliseconds). Returns a list of workflow-ids within that period

Takes options, workflow-name version start-time and end-time (in milliseconds).
Returns a list of workflow-ids within that period
sourceraw docstring

get-workflow-by-time-period-with-clientclj

(get-workflow-by-time-period-with-client client
                                         wf-name
                                         version
                                         start-time
                                         end-time)

Takes a client, workflow-name version start-time and end-time (in milliseconds). Returns a list of workflow-ids within that period

Takes a client, workflow-name version start-time and end-time (in milliseconds).
Returns a list of workflow-ids within that period
sourceraw docstring

get-workflow-with-clientclj

(get-workflow-with-client client workflow-id)
(get-workflow-with-client client workflow-id include-tasks)
source

get-workflowsclj

(get-workflows options wf-name correlation-id & args)

Takes a options, workflow-name, correlation-id and optional keyword arguments :inclide-closed and :include-tasks Return a list of workflow-executions

Takes a options, workflow-name, correlation-id and optional keyword arguments :inclide-closed and :include-tasks
Return a list of workflow-executions
sourceraw docstring

get-workflows-with-clientclj

(get-workflows-with-client client
                           wf-name
                           correlation-id
                           &
                           {:keys [include-closed include-tasks]
                            :or {include-closed false include-tasks false}})

Takes a client,workflow-name,correlation-id and optional keyword arguments :inclide-closed and :include-tasks Return a list of workflow-executions

Takes a client,workflow-name,correlation-id and optional keyword arguments :inclide-closed and :include-tasks
Return a list of workflow-executions
sourceraw docstring

pause-workflowclj

(pause-workflow options workflow-id)

Takes options and a workflow-id. Pauses the current workflow. Returns nil

Takes options and a workflow-id. Pauses the current workflow.
Returns nil
sourceraw docstring

pause-workflow-with-clientclj

(pause-workflow-with-client client workflow-id)

Takes a client and a workflow-id. Pauses the current workflow. Returns nil

Takes a client and a workflow-id. Pauses the current workflow.
Returns nil
sourceraw docstring

rerun-workflowclj

(rerun-workflow options workflow-id rerun-wf-request)
source

rerun-workflow-with-clientclj

(rerun-workflow-with-client client workflow-id rerun-wf-request)
source

restartclj

(restart options workflow-id & args)
source

restart-with-clientclj

(restart-with-client client workflow-id)
(restart-with-client client workflow-id use-latest-definitions)
source

resume-workflowclj

(resume-workflow options workflow-id)

Takes options and a workflow-id. Resumes a paused workflow. Returns nil

Takes options and a workflow-id. Resumes a paused workflow.
Returns nil
sourceraw docstring

resume-workflow-with-clientclj

(resume-workflow-with-client client workflow-id)

Takes a client and a workflow-id. Resumes a paused workflow. Returns nil

Takes a client and a workflow-id. Resumes a paused workflow.
Returns nil
sourceraw docstring

retry-last-failed-taskclj

(retry-last-failed-task options workflow-id)
source

retry-last-failed-task-with-clientclj

(retry-last-failed-task-with-client client workflow-id)
source

(search options query)
source

search-with-clientclj

(search-with-client client query)
source

skip-task-from-workflowclj

(skip-task-from-workflow options workflow-id task-reference-name)

Takes options a workflow-id and a task-reference-name. Will skip the task. Returns nil

Takes options a workflow-id and a task-reference-name. Will skip the task.
Returns nil
sourceraw docstring

skip-task-from-workflow-with-clientclj

(skip-task-from-workflow-with-client client workflow-id task-reference-name)

Takes a client a workflow-id and a task-reference-name. Will skip the task. Returns nil

Takes a client a workflow-id and a task-reference-name. Will skip the task.
Returns nil
sourceraw docstring

start-workflowclj

(start-workflow options start-request)

Takes an option map and a start-request map and starts a workflow. Returns the id of a workflow execution

Takes an option map and a start-request map and starts a workflow.
Returns the id of a workflow execution
sourceraw docstring

start-workflow-with-clientclj

(start-workflow-with-client client start-request)

Takes a client and a start-request map, and starts a workflow

Takes a client and a start-request map, and starts a workflow
sourceraw docstring

terminate-workflowclj

(terminate-workflow options workflow-id & args)

Terminates a running workflow. given an id and an optional reason

Terminates a running workflow. given an id and an optional reason
sourceraw docstring

terminate-workflow-with-clientclj

(terminate-workflow-with-client client workflow-id)
(terminate-workflow-with-client client workflow-id reason)

Takes a client a workflow-id and an optional reason. will terminate a running workflow

Takes a client a workflow-id and an optional reason. will terminate a running workflow
sourceraw docstring

terminate-workflowsclj

(terminate-workflows options workflow-ids & args)

Takes an options map and a list of workflow-ids and an optional reason. Terminates workflows in the list. Returns a BulkResponse map with success and failures

Takes an options map and a list of workflow-ids and an optional reason. Terminates workflows in the list.
Returns a BulkResponse map with success and failures
sourceraw docstring

terminate-workflows-with-clientclj

(terminate-workflows-with-client client workflow-ids)
(terminate-workflows-with-client client workflow-ids reason)

Takes a client and a list of workflow-ids and an optional reason. Terminates workflows in the list. Returns a BulkResponse map with success and failures

Takes a client and a list of workflow-ids and an optional reason. Terminates workflows in the list.
Returns a BulkResponse map with success and failures
sourceraw docstring

workflow-clientclj

(workflow-client {:keys [app-key app-secret url]
                  :or {url "http://localhost:8080/api/"}})

Returns an instance of TaskClient. when app-key and app-secret are provided Then returned instance will be Orkes Compatible

Returns an instance of TaskClient. when app-key and app-secret are provided
Then returned instance will be Orkes Compatible
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close