Skip to content
Developer Preview

TurnUnqueueResult

turn/unqueue result. Admission only — but for this command admission is the race: an admitted reclaim implies the turn will not launch. The authoritative removal is the turn/unqueued view event.

  • commandId
  • status
  • turnId
Source

schema/msp/experimental/msp.schema.json#/types/TurnUnqueueResult

{
"description": "`turn/unqueue` result. Admission only — but for this command\nadmission *is* the race: an admitted reclaim implies the turn will not\nlaunch. The authoritative removal is the `turn/unqueued` view event.",
"properties": {
"commandId": {
"description": "Echoes the client's id.",
"type": "string"
},
"status": {
"$ref": "#/$defs/CommandStatus",
"description": "Admission status."
},
"turnId": {
"description": "The reclaimed turn.",
"type": "string"
}
},
"required": [
"commandId",
"status",
"turnId"
],
"type": "object"
}