Actor Model · JSON Structure

Actor Model Supervisor Structure

A supervisor actor managing a set of child actors

Type: object Properties: 7
Actor ModelConcurrencyDistributed Systems

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

Properties

id path strategy maxRestarts restartWindow childCount status

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-supervisor-structure.json",
  "title": "Supervisor",
  "description": "A supervisor actor managing a set of child actors",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "strategy": {
      "type": "string"
    },
    "maxRestarts": {
      "type": "integer"
    },
    "restartWindow": {
      "type": "integer"
    },
    "childCount": {
      "type": "integer"
    },
    "status": {
      "type": "string"
    }
  }
}