Packages

class FabricSequencerDriver extends SequencerDriver with NamedLogging

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

Instance Constructors

  1. new FabricSequencerDriver(timeProvider: TimeProvider, config: FabricLedgerConfig, initialBlockHeight: Long, loggerFactory: NamedLoggerFactory)(implicit executionContext: ExecutionContext, materializer: Materializer)

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

    Register the given member.

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

    Send a submission request.

  25. 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
    FabricSequencerDriverSequencerDriver
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  30. 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 NamedLogging

Inherited from SequencerDriver

Inherited from AutoCloseable

Inherited from AnyRef

Inherited from Any

Ungrouped