Axon Framework · Schema

ClusterNode

CQRSEvent SourcingEvent-DrivenJavaMessagingMicroservices

Properties

Name Type Description
name string
hostName string
grpcPort integer
httpPort integer
internalHostName string
internalGrpcPort integer
connected boolean
View JSON Schema on GitHub

JSON Schema

axon-clusternode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ClusterNode",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "hostName": {
      "type": "string"
    },
    "grpcPort": {
      "type": "integer"
    },
    "httpPort": {
      "type": "integer"
    },
    "internalHostName": {
      "type": "string"
    },
    "internalGrpcPort": {
      "type": "integer"
    },
    "connected": {
      "type": "boolean"
    }
  }
}