We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Stream a job.
A stream request is followed by one or more stream responses.
A job is removed after it has completed and the terminating stream response was sent.
TODO Talk about nomenclature (what is a job).
handle
job_id
name
stdout
stderr
data
exit_status
package warden; message StreamRequest { required string handle = 1; required uint32 job_id = 2; } message StreamResponse { optional string name = 1; optional string data = 2; optional uint32 exit_status = 3; }