Actor Model · JSON Structure

Actor Model Spawn Actor Request Structure

Request to spawn a new actor

Type: object Properties: 4
Actor ModelConcurrencyDistributed Systems

Actor Model Spawn Actor Request 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

behavior id supervisorId initialState

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-spawn-actor-request-structure.json",
  "title": "SpawnActorRequest",
  "description": "Request to spawn a new actor",
  "type": "object",
  "properties": {
    "behavior": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "supervisorId": {
      "type": "string"
    },
    "initialState": {
      "type": "object"
    }
  }
}