Packages

abstract class BaseDriver extends Flusher[Transaction] with NamedLogging with FlagCloseable with NoTracing with HasFlushFuture with Factory

Shared implementation between master, trader and issuer roles.

The base driver contains the shared code between each role. In here, we setup the connection, read the ACS on startup, initialise the driver and provide a set of utilities that all roles will need (such as submitting and tracking submissions or dealing with pending contracts)

We also implement here the basic nanobot update logic.

Annotations
@nowarn()
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BaseDriver
  2. Factory
  3. HasFlushFuture
  4. NoTracing
  5. FlagCloseable
  6. AutoCloseable
  7. NamedLogging
  8. Flusher
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BaseDriver(connectivity: Connectivity, partyLf: LfPartyId, masterPartyLf: LfPartyId, commandClientConfiguration: CommandClientConfiguration, prefix: MetricName, registry: MetricRegistry, loggerFactory: NamedLoggerFactory, control: DriverControl)(implicit ec: ExecutionContextExecutor, actorSystem: ActorSystem, executionSequencerFactory: ExecutionSequencerFactory)

Abstract Value Members

  1. abstract def flush(): Boolean
    Definition Classes
    Flusher
  2. abstract def name: String
    Definition Classes
    Flusher
  3. abstract def subscribeToTemplates: Seq[TemplateId[_]]
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addToFlushAndLogError(name: String)(future: Future[_])(implicit loggingContext: ErrorLoggingContext): Unit

    Adds the task future to the flush future so that doFlush completes only after future has completed.

    Adds the task future to the flush future so that doFlush completes only after future has completed. Logs an error if the future fails with an exception.

    Attributes
    protected
    Definition Classes
    HasFlushFuture
  5. def addToFlushWithoutLogging(name: String)(future: Future[_]): Unit

    Adds the task future to the flush future so that doFlush completes only after future has completed.

    Adds the task future to the flush future so that doFlush completes only after future has completed. The caller is responsible for logging any exceptions thrown inside the future.

    Attributes
    protected
    Definition Classes
    HasFlushFuture
  6. val applicationId: String
    Attributes
    protected
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val backoff: AtomicInteger
    Attributes
    protected
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  10. final def close(): Unit

    Blocks until all earlier tasks have completed and then prevents further tasks from being run.

    Blocks until all earlier tasks have completed and then prevents further tasks from being run.

    Definition Classes
    FlagCloseable → AutoCloseable
    Annotations
    @SuppressWarnings()
  11. def closingTimeout: FiniteDuration
    Attributes
    protected
    Definition Classes
    FlagCloseable
  12. val commandIdGen: AtomicInteger
    Attributes
    protected
  13. val conn: LedgerConnection with NamedLogging
    Attributes
    protected
  14. def counter(name: MetricName): CounterM
    Definition Classes
    Factory
  15. val currentStatus: AtomicReference[Option[DriverStatus]]
    Attributes
    protected
  16. def doFlush(): Future[Unit]

    Returns a future that completes after all added futures have completed.

    Returns a future that completes after all added futures have completed. The returned future never fails.

    Attributes
    protected
    Definition Classes
    HasFlushFuture
  17. def done(): Future[Unit]
  18. val done_: Promise[Unit]
    Attributes
    protected
  19. def driver(): (BotUpdate[Transaction]) => Boolean
    Definition Classes
    Flusher
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  22. def finished(): Unit
    Attributes
    protected
  23. def flushCloseable(name: String, timeout: TimeoutDuration): SyncCloseable
    Attributes
    protected
    Definition Classes
    HasFlushFuture
  24. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def histogram(name: MetricName): HistogramM
    Definition Classes
    Factory
  27. val httpClient: OkHttpClient
    Attributes
    protected
  28. def intGauge(name: MetricName, initial: Integer): GaugeM[IntGauge, Integer]
    Definition Classes
    Factory
  29. def internalPerformUnlessClosingF[A](f: => Future[A])(implicit ec: ExecutionContext, traceContext: TraceContext): UnlessShutdown[Future[A]]
    Attributes
    protected
    Definition Classes
    FlagCloseable
  30. def isActive: Boolean
    Definition Classes
    BaseDriverFlusher
  31. def isClosing: Boolean

    Check whether we're closing.

    Check whether we're closing. Susceptible to race conditions; unless you're using using this as a flag to the retry lib or you really know what you're doing, prefer performUnlessClosing and friends.

    Definition Classes
    FlagCloseable
  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. val jsonApiAuthToken: String
    Attributes
    protected
  34. def keepTrackOfOpenFutures: Boolean

    track running futures on shutdown

    track running futures on shutdown

    set to true to get detailed information about all futures that did not complete during shutdown. if set to false, we don't do anything.

    Attributes
    protected
    Definition Classes
    FlagCloseable
  35. def latencyMonitor: Option[LatencyMonitor]
    Attributes
    protected
  36. val listeners: ListBuffer[ContractObserver]
    Attributes
    protected
  37. def loadGauge(name: MetricName, interval: FiniteDuration, timer: Timer): GaugeM[TimedLoadGauge, Double]
    Definition Classes
    Factory
  38. def logger: TracedLogger
    Attributes
    protected
    Definition Classes
    NamedLogging
  39. val loggerFactory: NamedLoggerFactory
    Definition Classes
    BaseDriverNamedLogging
  40. implicit def loggingContext(implicit traceContext: TraceContext): ErrorLoggingContext
    Attributes
    protected
    Definition Classes
    NamedLogging
  41. def mapCommand(fut: Future[CommandResult]): EitherT[Future, String, Unit]
    Attributes
    protected
  42. val masterContract: ContractStore[TestRun, Unit]
    Attributes
    protected
  43. def masterCreated(create: Contract[TestRun]): Unit
    Attributes
    protected
  44. val masterParty: @@[String, PartyTag]
    Attributes
    protected
  45. def meter(name: MetricName): MeterM
    Definition Classes
    Factory
  46. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  47. def noTracingLogger: Logger
    Attributes
    protected
    Definition Classes
    NamedLogging
  48. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  49. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  50. def onClosed(): Unit
    Definition Classes
    BaseDriverFlagCloseable
  51. val party: @@[String, PartyTag]
    Attributes
    protected
  52. val pendingCommands: TrieMap[String, Instant]
    Attributes
    protected
  53. def performUnlessClosing[A](f: => A)(implicit traceContext: TraceContext): UnlessShutdown[A]

    Performs the task given by f unless a shutdown has been initiated.

    Performs the task given by f unless a shutdown has been initiated. The shutdown will only begin after f completes, but other tasks may execute concurrently with f, if started using this function, or one of the other variants (performUnlessClosingF and performUnlessClosingEitherT). The tasks are assumed to take less than closingTimeout to complete.

    f

    The task to perform

    returns

    scala.None$ if a shutdown has been initiated. Otherwise the result of the task.

    Definition Classes
    FlagCloseable
  54. def performUnlessClosingEitherT[E, R](onClosing: => E)(etf: => EitherT[Future, E, R])(implicit ec: ExecutionContext, traceContext: TraceContext): EitherT[Future, E, R]

    Performs the EitherT[Future] given by etf unless a shutdown has been initiated, in which case the provided error is returned instead.

    Performs the EitherT[Future] given by etf unless a shutdown has been initiated, in which case the provided error is returned instead. Both etf and the error are lazy; etf is only evaluated if there is no shutdown, the error only if we're shutting down. The shutdown will only begin after etf completes, but other tasks may execute concurrently with etf, if started using this function, or one of the other variants (performUnlessClosing and performUnlessClosingF). The tasks are assumed to take less than closingTimeout to complete.

    etf

    The task to perform

    Definition Classes
    FlagCloseable
  55. def performUnlessClosingEitherTF[E, R](onClosing: => E)(etf: => EitherT[Future, E, Future[R]])(implicit ec: ExecutionContext, traceContext: TraceContext): EitherT[Future, E, Future[R]]
    Definition Classes
    FlagCloseable
  56. def performUnlessClosingF[A](f: => Future[A])(implicit ec: ExecutionContext, traceContext: TraceContext): FutureUnlessShutdown[A]

    Performs the Future given by f unless a shutdown has been initiated.

    Performs the Future given by f unless a shutdown has been initiated. The future is lazy and not evaluated during shutdown. The shutdown will only begin after f completes, but other tasks may execute concurrently with f, if started using this function, or one of the other variants (performUnlessClosing and performUnlessClosingEitherT). The tasks are assumed to take less than closingTimeout to complete.

    f

    The task to perform

    returns

    The future completes with com.digitalasset.canton.lifecycle.UnlessShutdown.AbortedDueToShutdown if a shutdown has been initiated. Otherwise the result of the task wrapped in com.digitalasset.canton.lifecycle.UnlessShutdown.Outcome.

    Definition Classes
    FlagCloseable
  57. def postToJsonApi(path: String, postBody: String): Future[(Int, String)]
    Attributes
    protected
  58. val prefix: MetricName
    Definition Classes
    BaseDriverFactory
  59. def refGauge[T](name: MetricName, empty: T): GaugeM[RefGauge[T], T]
    Definition Classes
    Factory
  60. val registry: MetricRegistry
    Definition Classes
    BaseDriverFactory
  61. def runOnShutdown[T](task: RunOnShutdown)(implicit traceContext: TraceContext): Unit

    Register a task that will run onClose after all "performUnlessShutdown" tasks have finished

    Register a task that will run onClose after all "performUnlessShutdown" tasks have finished

    Definition Classes
    FlagCloseable
  62. def runStateChanged(waitingState: Boolean = false): Unit
    Attributes
    protected
    Definition Classes
    FlagCloseable
    Annotations
    @VisibleForTesting()
  63. val running: AtomicBoolean
    Attributes
    protected
  64. def setPending[T <: Template[T], L](cs: ContractStore[T, L], cid: ContractId[T], fut: Future[CommandResult])(implicit arg0: ValueDecoder[T]): Unit
    Attributes
    protected
  65. def sleepMillis: Long
    Attributes
    protected
    Definition Classes
    FlagCloseable
  66. def start(): Future[Either[String, Unit]]
  67. def status(): Option[DriverStatus]
  68. def submitBatched(commands: Seq[SubCommand], batchSize: Int, submissionRate: SubmissionRate): Unit
    Attributes
    protected
  69. def submitCommand(baseDescription: String, command: Seq[Command], reference: String, failed: () => Unit = () => ()): Future[CommandResult]
    Attributes
    protected
  70. def submitSubCommands(commands: Seq[SubCommand]): Future[CommandResult]
    Attributes
    protected
  71. def submitViaJsonApi(command: Command, commandId: String): Future[CommandResult]
    Attributes
    protected
  72. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  73. val timeouts: ProcessingTimeout
    Attributes
    protected
    Definition Classes
    BaseDriverFlagCloseable
  74. def timer(name: MetricName): TimerM
    Definition Classes
    Factory
  75. def toString(): String
    Definition Classes
    AnyRef → Any
  76. implicit def traceContext: TraceContext
    Attributes
    protected
    Definition Classes
    NoTracing
  77. def update(transaction: List[Transaction]): Boolean
    Definition Classes
    BaseDriverFlusher
  78. def updateRateSettings(update: (RateSettings) => RateSettings): Unit
  79. def varGauge[T](name: MetricName, initial: T): GaugeM[VarGauge[T], T]
    Definition Classes
    Factory
  80. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  81. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  82. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Factory

Inherited from HasFlushFuture

Inherited from NoTracing

Inherited from FlagCloseable

Inherited from AutoCloseable

Inherited from NamedLogging

Inherited from Flusher[Transaction]

Inherited from AnyRef

Inherited from Any

Ungrouped