Hyperlinkv0.8.0-beta.28

CustomQueueHyperlink

CustomQueueHyperlink.customQueueStatusconstsrc/CustomQueueHyperlink.ts:78
Schema.Struct<{
  readonly sizes: Schema.$Record<Schema.String, Schema.Number>
  readonly paused: Schema.Boolean
  readonly inFlight: Schema.Number
  readonly completed: Schema.Number
  readonly phase: Schema.Literals<readonly ["running", "draining", "off"]>
}>

Custom-queue current-state snapshot — element of the status stream.

wire schemas
export const customQueueStatus = Schema.Struct({
  sizes: customQueueSizes,
  paused: Schema.Boolean,
  inFlight: Schema.Number,
  completed: Schema.Number,
  phase: Schema.Literals(["running", "draining", "off"]),
});
Referenced by 1 symbols