class CommunityLocalDomainReference extends DomainReference with CommunityDomainReference with LocalDomainReference
- Alphabetic
- By Inheritance
- CommunityLocalDomainReference
- LocalDomainReference
- LocalInstanceReference
- LocalInstanceReferenceCommon
- NoTracing
- BaseInspection
- CommunityDomainReference
- DomainReference
- InstanceReferenceWithSequencer
- InstanceReferenceWithSequencerConnection
- DomainAdministration
- InstanceReference
- InstanceReferenceCommon
- PrettyPrinting
- PrettyUtil
- ShowUtil
- ShowSyntax
- ToShowOps
- FeatureFlagFilter
- NamedLogging
- Helpful
- AdminCommandRunner
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new CommunityLocalDomainReference(consoleEnvironment: ConsoleEnvironment, name: String, executionContext: ExecutionContext)
Type Members
- type Status = DomainNodeStatus
- Definition Classes
- DomainReference → DomainAdministration → InstanceReferenceCommon
- implicit class ShowAnyRefSyntax extends AnyRef
- Definition Classes
- ShowUtil
- implicit class ShowEitherSyntax[L, R] extends AnyRef
Enables the syntax
show"${myEither.showMerged}"
.Enables the syntax
show"${myEither.showMerged}"
.- Definition Classes
- ShowUtil
- implicit class ShowLengthLimitedStringSyntax extends StringOperators
- Definition Classes
- ShowUtil
- implicit class ShowLengthLimitedStringWrapperSyntax extends StringOperators
- Definition Classes
- ShowUtil
- implicit class ShowOptionSyntax[T] extends AnyRef
- Definition Classes
- ShowUtil
- implicit class ShowProductSyntax extends AnyRef
- Definition Classes
- ShowUtil
- Annotations
- @SuppressWarnings()
- implicit class ShowStringSyntax extends StringOperators
- Definition Classes
- ShowUtil
- implicit class ShowTraversableSyntax[T] extends AnyRef
Enables syntax like
show"Found several elements: ${myCollection.mkShow()}"
.Enables syntax like
show"Found several elements: ${myCollection.mkShow()}"
.- Definition Classes
- ShowUtil
- abstract class StringOperators extends AnyRef
Enables syntax like
show"This is a string: ${myString.doubleQuoted}"
andshow"This is a hash: ${myHash.readableHash}"
.Enables syntax like
show"This is a string: ${myString.doubleQuoted}"
andshow"This is a hash: ${myHash.readableHash}"
.- Definition Classes
- ShowUtil
Value Members
- def adHocPrettyInstance[T <: Product](implicit c: ClassTag[T]): Pretty[T]
Use this as a temporary solution, to make the code compile during an ongoing migration.
Use this as a temporary solution, to make the code compile during an ongoing migration. Drawbacks:
- Instances of
Pretty[T]
are ignored. - No parameter names
- Definition Classes
- PrettyUtil
- Instances of
- def clear_cache(): Unit
- Definition Classes
- InstanceReferenceCommon
- Annotations
- @Summary(s = "Clear locally cached variables", flag = FeatureFlag.Testing) @Description(s = "Some commands cache values on the client side. Use this command to explicitly clear the caches of these values.")
- def config: environment.Environment.Config.DomainConfigType
- Definition Classes
- LocalDomainReference → LocalInstanceReferenceCommon
- Annotations
- @Summary(s = "Returns the domain configuration", flag = console.this.Help.Summary.<init>$default$2)
- val consoleEnvironment: ConsoleEnvironment
- Definition Classes
- CommunityLocalDomainReference → LocalInstanceReferenceCommon → DomainReference → DomainAdministration → InstanceReferenceCommon → FeatureFlagFilter
- def customParam[T](getValue: (T) => String, cond: (T) => Boolean = (_: T) => true): (T) => Option[Tree]
Use this if you need a custom representation of a parameter.
Use this if you need a custom representation of a parameter. Do not use this to create lengthy strings, as line wrapping is not supported.
- Definition Classes
- PrettyUtil
- def defaultDomainConnection: DomainConnectionConfig
- Definition Classes
- DomainReference
- Annotations
- @Summary(s = "Yields a domain connection config with default values except for the domain alias and the sequencer connection. " +
"May throw an exception if the domain alias or sequencer connection is misconfigured.", flag = console.this.Help.Summary.<init>$default$2)
- def equals(obj: Any): Boolean
- Definition Classes
- DomainReference → AnyRef → Any
- def hashCode(): Int
- Definition Classes
- InstanceReferenceCommon → AnyRef → Any
- def health: HealthAdministration[Status]
- Definition Classes
- DomainReference → DomainAdministration → InstanceReferenceCommon
- Annotations
- @Summary(s = "Health and diagnostic related commands", flag = console.this.Help.Summary.<init>$default$2) @Group(name = "Health")
- def help(methodName: String)(implicit consoleEnvironment: ConsoleEnvironment): Unit
- Definition Classes
- Helpful
- Annotations
- @Summary(s = "Help for specific commands (use help() or help(\"method\") for more information)", flag = console.this.Help.Summary.<init>$default$2) @Topic(t = Seq("Top-level Commands"))
- def help()(implicit consoleEnvironment: ConsoleEnvironment): Unit
- Definition Classes
- Helpful
- def id: DomainId
- Definition Classes
- DomainReference → DomainAdministration → InstanceReferenceCommon
- Annotations
- @Summary(s = "Yields the globally unique id of this domain. " +
"Throws an exception, if the id has not yet been allocated (e.g., the domain has not yet been started).", flag = console.this.Help.Summary.<init>$default$2)
- def indicateOmittedFields[T]: (T) => Option[Tree]
Use this to indicate that you've omitted fields from pretty printing
Use this to indicate that you've omitted fields from pretty printing
- Definition Classes
- PrettyUtil
- def is_initialized: Boolean
- Definition Classes
- LocalInstanceReferenceCommon
- Annotations
- @Summary(s = "Check if the local instance is running and is fully initialized", flag = console.this.Help.Summary.<init>$default$2)
- def is_running: Boolean
- Definition Classes
- LocalInstanceReferenceCommon
- Annotations
- @Summary(s = "Check if the local instance is running", flag = console.this.Help.Summary.<init>$default$2)
- def keys: LocalKeyAdministrationGroup
- Definition Classes
- LocalInstanceReferenceCommon → InstanceReferenceCommon
- Annotations
- @Summary(s = "Manage public and secret keys", flag = console.this.Help.Summary.<init>$default$2) @Group(name = "Keys")
- def mediator: MediatorAdministrationGroup
- Definition Classes
- DomainReference
- Annotations
- @Summary(s = "Manage the mediator", flag = console.this.Help.Summary.<init>$default$2) @Group(name = "Mediator")
- val name: String
- Definition Classes
- CommunityLocalDomainReference → LocalInstanceReferenceCommon → BaseInspection → DomainReference → InstanceReferenceCommon
- def param[T, V](name: String, getValue: (T) => V, cond: (T) => Boolean = (_: T) => true)(implicit arg0: Pretty[V]): (T) => Option[Tree]
A tree representing both parameter name and value.
A tree representing both parameter name and value.
- Definition Classes
- PrettyUtil
- def paramIfDefined[T, V](name: String, getValue: (T) => Option[V])(implicit arg0: Pretty[V]): (T) => Option[Tree]
- Definition Classes
- PrettyUtil
- def paramIfNonEmpty[T, V <: IterableOnce[_]](name: String, getValue: (T) => V)(implicit arg0: Pretty[V]): (T) => Option[Tree]
- Definition Classes
- PrettyUtil
- def paramIfNotDefault[T, V](name: String, getValue: (T) => V, default: V)(implicit arg0: Pretty[V]): (T) => Option[Tree]
A tree only written if not matching the default value
A tree only written if not matching the default value
- Definition Classes
- PrettyUtil
- def paramIfTrue[T](label: String, getValue: (T) => Boolean): (T) => Option[Tree]
- Definition Classes
- PrettyUtil
- def paramWithoutValue[T](name: String, cond: (T) => Boolean = (_: T) => true): (T) => Option[Tree]
A tree representing a parameter name without a parameter value.
A tree representing a parameter name without a parameter value. Use this for parameters storing confidential or binary data.
- Definition Classes
- PrettyUtil
- def parties: PartiesAdministrationGroup
- Definition Classes
- DomainReference → InstanceReference
- Annotations
- @Summary(s = "Inspect configured parties", flag = console.this.Help.Summary.<init>$default$2) @Group(name = "Parties")
- def pretty: Pretty[InstanceReferenceCommon]
Indicates how to pretty print this instance.
Indicates how to pretty print this instance. See
PrettyPrintingTest
for examples on how to implement this method.- Definition Classes
- InstanceReferenceCommon → PrettyPrinting
- def prettyInfix[T]: PrettyInfixPartiallyApplied[T]
- Definition Classes
- PrettyUtil
- def prettyNode[T](label: String, children: (T) => Option[Tree]*): Pretty[T]
A tree consisting of a labelled node with the given children.
A tree consisting of a labelled node with the given children.
- Definition Classes
- PrettyUtil
- def prettyOfClass[T](getParamTrees: (T) => Option[Tree]*): Pretty[T]
A tree representing the type name and parameter trees.
A tree representing the type name and parameter trees.
- Definition Classes
- PrettyUtil
- def prettyOfObject[T <: Product]: Pretty[T]
A tree presenting the type name only.
A tree presenting the type name only. (E.g., for case objects.)
- Definition Classes
- PrettyUtil
- def prettyOfParam[T, V](getValue: (T) => V)(implicit arg0: Pretty[V]): Pretty[T]
Use this to give a class with a singleton parameter the same pretty representation as the parameter.
Use this to give a class with a singleton parameter the same pretty representation as the parameter.
- Definition Classes
- PrettyUtil
- def prettyOfString[T](toString: (T) => String): Pretty[T]
Creates a pretty instance from a string function.
Creates a pretty instance from a string function. Do not use this with lengthy strings, as line wrapping is not supported.
- Definition Classes
- PrettyUtil
- def sequencer: SequencerAdministrationGroup
- Definition Classes
- DomainReference → InstanceReferenceWithSequencer
- Annotations
- @Summary(s = "Manage the sequencer", flag = console.this.Help.Summary.<init>$default$2) @Group(name = "Sequencer")
- def sequencerConnection: SequencerConnection
- Definition Classes
- LocalDomainReference → InstanceReferenceWithSequencerConnection
- implicit final def showInterpolator(sc: StringContext): ShowInterpolator
- Definition Classes
- ShowSyntax
- implicit def showPretty[T](implicit arg0: Pretty[T]): Show[T]
Enables the syntax
show"This object is pretty: $myPrettyType"
.Enables the syntax
show"This object is pretty: $myPrettyType"
.- Definition Classes
- ShowUtil
- def start(): Unit
- Definition Classes
- LocalInstanceReferenceCommon
- Annotations
- @Summary(s = "Start the instance", flag = console.this.Help.Summary.<init>$default$2)
- def stop(): Unit
- Definition Classes
- LocalInstanceReferenceCommon
- Annotations
- @Summary(s = "Stop the instance", flag = console.this.Help.Summary.<init>$default$2)
- implicit def toShow[A](target: A)(implicit tc: Show[A]): Ops[A]
- Definition Classes
- ToShowOps
- final def toString(): String
Yields a readable string representation based on com.digitalasset.canton.logging.pretty.Pretty.DefaultPprinter.
Yields a readable string representation based on com.digitalasset.canton.logging.pretty.Pretty.DefaultPprinter.
Final
to avoid accidental overwriting.- Definition Classes
- PrettyPrinting → AnyRef → Any
- def topology: TopologyAdministrationGroup
- Definition Classes
- DomainReference → DomainAdministration → InstanceReference → InstanceReferenceCommon
- Annotations
- @Summary(s = "Topology management related commands", flag = console.this.Help.Summary.<init>$default$2) @Group(name = "Topology") @Description(s = "This group contains access to the full set of topology management commands.")
- def underlying: Option[Domain]
- Definition Classes
- BaseInspection
- def unnamedParam[T, V](getValue: (T) => V, cond: (T) => Boolean = (_: T) => true)(implicit arg0: Pretty[V]): (T) => Option[Tree]
A tree representing a parameter value without a parameter name.
A tree representing a parameter value without a parameter name.
- Definition Classes
- PrettyUtil
- def unnamedParamIfDefined[T, V](getValue: (T) => Option[V])(implicit arg0: Pretty[V]): (T) => Option[Tree]
- Definition Classes
- PrettyUtil
- def unnamedParamIfNonEmpty[T, V <: IterableOnce[_]](getValue: (T) => V)(implicit arg0: Pretty[V]): (T) => Option[Tree]
- Definition Classes
- PrettyUtil
- object db extends Helpful
- Definition Classes
- LocalInstanceReferenceCommon
- Annotations
- @Summary(s = "Database related operations", flag = console.this.Help.Summary.<init>$default$2) @Group(name = "Database")
- object participants extends Helpful
- Definition Classes
- DomainAdministration
- Annotations
- @Summary(s = "Manage participant permissions", flag = console.this.Help.Summary.<init>$default$2) @Group(name = "Participants")
- object service extends Helpful
- Definition Classes
- DomainAdministration
- Annotations
- @Summary(s = "Domain service commands", flag = console.this.Help.Summary.<init>$default$2) @Group(name = "Service")