Actor Model · JSON Structure

Actor Model Actor Structure

An actor in the system with its current state and mailbox info

Type: object Properties: 10
Actor ModelConcurrencyDistributed Systems

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

Properties

id path behavior status mailboxSize supervisorId spawnedAt lastMessageAt messageCount restartCount

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-actor-structure.json",
  "title": "Actor",
  "description": "An actor in the system with its current state and mailbox info",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "behavior": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "mailboxSize": {
      "type": "integer"
    },
    "supervisorId": {
      "type": "string"
    },
    "spawnedAt": {
      "type": "string"
    },
    "lastMessageAt": {
      "type": "string"
    },
    "messageCount": {
      "type": "integer"
    },
    "restartCount": {
      "type": "integer"
    }
  }
}