Skip to contents

The Tessiflow API makes it possible to communicate with a running tessiflow instance

Usage

tessiflow_job_start(
  flow_name,
  job_name,
  hostname = "localhost",
  port = config::get("tessiflow.port")
)

tessiflow_job_stop(
  flow_name,
  job_name,
  hostname = "localhost",
  port = config::get("tessiflow.port")
)

tessiflow_flows_get(
  hostname = "localhost",
  port = config::get("tessiflow.port")
)

Arguments

flow_name

character workflow name

job_name

character job name

hostname

hostname of tessiflow server, defaults to localhost

port

port of tessiflow server, defaults to tessiflow.port config value

Value

Functions

  • tessiflow_job_start(): start job on the tessiflow server

  • tessiflow_job_stop(): stop job on the tessiflow server

  • tessiflow_flows_get(): get information on the latest run of each job on the tessiflow server