interface JobMessage {
    _ref?: boolean;
    entity?: string;
    guid?: string;
    job: JobOutput;
    topic: string;
    type: "job";
}

Hierarchy

  • QuorumMessageBase
    • JobMessage

Properties

_ref?: boolean

if true, job.data is null due to payload size - subscriber should fetch via getState

entity?: string
guid?: string
topic: string
type: "job"