Packages

package topology

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Package Members

  1. package admin
  2. package client
  3. package processing
  4. package store
  5. package transaction

Type Members

  1. sealed trait AuthenticatedMember extends Member
  2. sealed trait AuthenticatedMemberCode extends KeyOwnerCode
  3. final case class DomainId(uid: UniqueIdentifier) extends NodeIdentity with Product with Serializable
  4. sealed trait DomainMember extends AuthenticatedMember
  5. abstract class DomainOutboxCommon extends DomainOutboxHandle
  6. trait DomainOutboxDispatch[TX, State, +H <: RegisterTopologyTransactionHandleCommon[TX, State], +TS <: TopologyStoreCommon[DomainStore, _, _, TX]] extends NamedLogging with FlagCloseable
  7. trait DomainOutboxDispatchHelperOld extends DomainOutboxDispatchStoreSpecific[GenericSignedTopologyTransaction, State]
  8. trait DomainOutboxDispatchStoreSpecific[TX, State] extends NamedLogging
  9. trait DomainOutboxHandle extends DomainOutboxStatus with FlagCloseable
  10. trait DomainOutboxStatus extends AnyRef
  11. final case class DomainTopologyManagerId(uid: UniqueIdentifier) extends DomainMember with Product with Serializable

    The domain topology manager id

    The domain topology manager id

    The domain manager is the topology manager of the domain. The read side of the domain manager is the IdentityProvidingService.

  12. final case class Identifier extends LengthLimitedStringWrapper with PrettyPrinting with Product with Serializable

    An identifier such as a random or a readable string

  13. sealed trait Identity extends Product with Serializable with PrettyPrinting

    Top level trait representing an identity within the system

  14. final case class KeyCollection(signingKeys: Seq[SigningPublicKey], encryptionKeys: Seq[EncryptionPublicKey]) extends Product with Serializable
  15. sealed trait KeyOwner extends Identity

    An identity within the system that owns a key

    An identity within the system that owns a key

    Annotations
    @Deprecated
  16. sealed trait KeyOwnerCode extends AnyRef
  17. final case class MediatorGroup(index: MediatorGroupIndex, active: MediatorId, threshold: PositiveInt) extends Product with Serializable

    index

    uniquely identifies the group, just like MediatorId for single mediators.

    active

    the active mediators belonging to the group

    threshold

    the minimum size of a quorum

  18. final case class MediatorId(uid: UniqueIdentifier) extends DomainMember with NodeIdentity with Product with Serializable
  19. final case class MediatorRef(mediatorId: MediatorId) extends PrettyPrinting with Product with Serializable
  20. sealed trait Member extends KeyOwner with Product with Serializable

    A member in a domain such as a participant and or domain entities

    A member in a domain such as a participant and or domain entities

    A member can be addressed and talked to on the transaction level through the sequencer. Therefore every member is a KeyOwner. And the sequencer is not a member, as he is one level below, dealing with messages.

  21. final case class Namespace(fingerprint: Fingerprint) extends PrettyPrinting with Product with Serializable

    A namespace spanned by the fingerprint of a pub-key

    A namespace spanned by the fingerprint of a pub-key

    This is based on the assumption that the fingerprint is unique to the public-key

  22. final case class NodeId(identity: UniqueIdentifier) extends Product with Serializable
  23. sealed trait NodeIdentity extends Identity
  24. final case class ParticipantId(uid: UniqueIdentifier) extends AuthenticatedMember with NodeIdentity with Product with Serializable

    A participant identifier

  25. final case class PartyId(uid: UniqueIdentifier) extends Identity with Product with Serializable

    A party identifier based on a unique identifier

  26. final case class PendingTransactions[TX](transactions: Seq[TX], newWatermark: CantonTimestamp) extends Product with Serializable
  27. final case class SequencerGroup(active: Seq[SequencerId], passive: Seq[SequencerId], threshold: PositiveInt) extends Product with Serializable
  28. final case class SequencerId(uid: UniqueIdentifier) extends DomainMember with NodeIdentity with Product with Serializable
  29. class StoreBasedDomainOutbox extends StoreBasedDomainOutboxCommon[GenericSignedTopologyTransaction, State, RegisterTopologyTransactionHandleCommon[GenericSignedTopologyTransaction, State], TopologyStore[DomainStore]] with DomainOutboxDispatchHelperOld
  30. abstract class StoreBasedDomainOutboxCommon[TX, State, +H <: RegisterTopologyTransactionHandleCommon[TX, State], +DTS <: TopologyStoreCommon[DomainStore, _, _, TX]] extends DomainOutboxCommon with DomainOutboxDispatch[TX, State, H, DTS]
  31. abstract class TopologyManager[E <: CantonError] extends TopologyManagerStatus with NamedLogging with FlagCloseableAsync
  32. sealed trait TopologyManagerError extends CantonError
  33. trait TopologyManagerStatus extends AnyRef
  34. final case class UnauthenticatedMemberId(uid: UniqueIdentifier) extends Member with Product with Serializable
  35. final case class UniqueIdentifier(id: Identifier, namespace: Namespace) extends PrettyPrinting with Product with Serializable

    a unique identifier within a namespace Based on the Ledger API PartyIds/LedgerStrings being limited to 255 characters, we allocate - 64 + 4 characters to the namespace/fingerprint (essentially SHA256 with extra bytes), - 2 characters as delimiters, and - the last 185 characters for the Identifier.

Value Members

  1. object DomainId extends Serializable
  2. object DomainMember extends Serializable
  3. object DomainOutboxStatus
  4. object DomainTopologyManagerId extends Serializable
  5. object Identifier extends Serializable
  6. object KeyCollection extends Serializable
  7. object KeyOwner extends Serializable
  8. object KeyOwnerCode
  9. object MediatorGroup extends Serializable
  10. object MediatorId extends Serializable
  11. object MediatorRef extends Serializable
  12. object Member extends Serializable
  13. object Namespace extends Serializable
  14. object ParticipantId extends Serializable
  15. object PartyId extends Serializable
  16. object SafeSimpleString

    utility class to ensure that strings conform to LF specification minus our internal delimiter

  17. object SequencerId extends Serializable
  18. object TopologyManagerError extends TopologyManagerErrorGroup
  19. object UnauthenticatedMemberId extends Serializable
  20. object UniqueIdentifier extends Serializable

Ungrouped