Actor Model · JSON Structure

Actor Model Mailbox Inspection Structure

Inspection of pending messages in an actor's mailbox

Type: object Properties: 4
Actor ModelConcurrencyDistributed Systems

Actor Model Mailbox Inspection Structure is a JSON Structure definition published by Actor Model, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

actorId pendingCount messages oldestMessageAge

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://structure.api-evangelist.com/actor-model/actor-model-mailbox-inspection-structure.json",
  "title": "MailboxInspection",
  "description": "Inspection of pending messages in an actor's mailbox",
  "type": "object",
  "properties": {
    "actorId": {
      "type": "string"
    },
    "pendingCount": {
      "type": "integer"
    },
    "messages": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "oldestMessageAge": {
      "type": "integer"
    }
  }
}