Skip to content
Developer Preview

SessionResumeResult

session/resume result.

  • history
  • pendingRequests
  • session
  • viewCursor
Source

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

{
"description": "`session/resume` result.",
"properties": {
"history": {
"$ref": "#/$defs/SessionHistory",
"description": "The served history."
},
"pendingRequests": {
"description": "The late-joiner pointer set; empty when nothing is pending.",
"items": {
"$ref": "#/$defs/PendingRequestPointer"
},
"type": "array"
},
"session": {
"$ref": "#/$defs/Session",
"description": "The loaded session."
},
"viewCursor": {
"description": "The session view head; the connection is subscribed after it.",
"type": "string"
}
},
"required": [
"history",
"pendingRequests",
"session",
"viewCursor"
],
"type": "object"
}