Packages

package data

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. case class DomainStatus(uid: UniqueIdentifier, uptime: Duration, ports: Map[String, Port], connectedParticipants: Seq[ParticipantId], sequencer: SequencerHealthStatus, topologyQueue: TopologyQueueStatus) extends Status with Product with Serializable
  2. case class MediatorNodeStatus(uid: UniqueIdentifier, domainId: DomainId, uptime: Duration, ports: Map[String, Port], active: Boolean, topologyQueue: TopologyQueueStatus) extends Status with Product with Serializable
  3. sealed trait NodeStatus[+S <: Status] extends PrettyPrinting with Product with Serializable
  4. case class ParticipantStatus(uid: UniqueIdentifier, uptime: Duration, ports: Map[String, Port], connectedDomains: Map[DomainId, Boolean], active: Boolean, topologyQueue: TopologyQueueStatus) extends Status with Product with Serializable
  5. case class SequencerHealthStatus(isActive: Boolean, details: Option[String] = None) extends PrettyPrinting with Product with Serializable

    Health status of the sequencer component itself.

    Health status of the sequencer component itself.

    isActive

    implementation specific flag indicating whether the sequencer is active

  6. case class SequencerNodeStatus(uid: UniqueIdentifier, domainId: DomainId, uptime: Duration, ports: Map[String, Port], connectedParticipants: Seq[ParticipantId], sequencer: SequencerHealthStatus, topologyQueue: TopologyQueueStatus) extends Status with Product with Serializable
  7. case class SimpleStatus(uid: UniqueIdentifier, uptime: Duration, ports: Map[String, Port], active: Boolean, topologyQueue: TopologyQueueStatus) extends Status with Product with Serializable
  8. case class TopologyQueueStatus(manager: Int, dispatcher: Int, clients: Int) extends PrettyPrinting with Product with Serializable

    Topology manager queue status

    Topology manager queue status

    Status around topology management queues

    manager

    number of queued commands in the topology manager

    dispatcher

    number of queued transactions in the dispatcher

    clients

    number of observed transactions that are not yet effective

Ungrouped