Axon Framework · Schema

EventProcessor

CQRSEvent SourcingEvent-DrivenJavaMessagingMicroservices

Properties

Name Type Description
name string
mode string
isStreaming boolean
fullName string
tokenStoreIdentifier string
activeThreads integer
canPause boolean
isRunning boolean
isError boolean
View JSON Schema on GitHub

JSON Schema

axon-eventprocessor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EventProcessor",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "mode": {
      "type": "string"
    },
    "isStreaming": {
      "type": "boolean"
    },
    "fullName": {
      "type": "string"
    },
    "tokenStoreIdentifier": {
      "type": "string"
    },
    "activeThreads": {
      "type": "integer"
    },
    "canPause": {
      "type": "boolean"
    },
    "isRunning": {
      "type": "boolean"
    },
    "isError": {
      "type": "boolean"
    }
  }
}