class EthereumSequencerDriver extends SequencerDriver with NamedLogging with NoTracing

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EthereumSequencerDriver
  2. NoTracing
  3. NamedLogging
  4. SequencerDriver
  5. AutoCloseable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new EthereumSequencerDriver(domainTopologyManagerId: String, timeProvider: TimeProvider, conf: EthereumLedgerNodeConfig[AlreadyDeployed], nonStandardConfig: Boolean, nextBlockToRead: BigInt, loggerFactory: NamedLoggerFactory)(implicit executionContext: ExecutionContext)

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 acknowledge(acknowledgement: ByteString)(implicit traceContext: TraceContext): Future[Unit]

    Distribute an acknowledgement request.

  5. def adminServices: Seq[BindableService]

    Services for administering the ledger driver.

    Services for administering the ledger driver. These services will be exposed on the sequencer node's admin API endpoint.

    Definition Classes
    EthereumSequencerDriverSequencerDriver
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def authorizeAccount(toAuthorize: String)(implicit traceContext: TraceContext): Future[Unit]
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def close(): Unit
    Definition Classes
    EthereumSequencerDriver → AutoCloseable
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. implicit def errorLoggingContext(implicit traceContext: TraceContext): ErrorLoggingContext
    Attributes
    protected
    Definition Classes
    NamedLogging
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def health(implicit traceContext: TraceContext): Future[SequencerDriverHealthStatus]
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def logger: TracedLogger
    Attributes
    protected
    Definition Classes
    NamedLogging
  18. val loggerFactory: NamedLoggerFactory
  19. implicit def namedLoggingContext(implicit traceContext: TraceContext): NamedLoggingContext
    Attributes
    protected
    Definition Classes
    NamedLogging
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def noTracingLogger: Logger
    Attributes
    protected
    Definition Classes
    NamedLogging
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. def registerMember(member: String)(implicit traceContext: TraceContext): Future[Unit]

    Register the given member.

  25. def send(request: ByteString)(implicit traceContext: TraceContext): Future[Unit]

    Send a submission request.

  26. def subscribe()(implicit traceContext: TraceContext): Source[RawLedgerBlock, KillSwitch]

    Delivers a stream of blocks starting with firstBlockHeight (if specified in the factory call) or the first block serveable.

    Delivers a stream of blocks starting with firstBlockHeight (if specified in the factory call) or the first block serveable. Block heights must be consecutive.

    Fails if firstBlockHeight refers to a block whose sequencing the sequencer node has not yet observed or that has already been pruned.

    Must succeed if an earlier call to subscribe delivered a block with height firstBlockHeight unless the block has been pruned in between.

    This method will be called only once, so implementations do not have to try to create separate sources on every call to this method. It is acceptable to for the driver to have one internal source and just return it here.

    Definition Classes
    EthereumSequencerDriverSequencerDriver
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. implicit def traceContext: TraceContext
    Attributes
    protected
    Definition Classes
    NoTracing
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. 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 NoTracing

Inherited from NamedLogging

Inherited from SequencerDriver

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped