object HandlerResult

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HandlerResult
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def asynchronous(future: FutureUnlessShutdown[Unit]): HandlerResult

    The given com.digitalasset.canton.lifecycle.FutureUnlessShutdown is an asynchronous processing part for the event.

    The given com.digitalasset.canton.lifecycle.FutureUnlessShutdown is an asynchronous processing part for the event. It can run in parallel with any of the following: * Earlier events' asynchronous processing * Later events' synchronous and asynchronous processing * Later stages of synchronous processing for the same event The event will be marked as clean only after the future has completed successfully with com.digitalasset.canton.lifecycle.UnlessShutdown.Outcome. If the future fails with an exception or returns com.digitalasset.canton.lifecycle.UnlessShutdown.AbortedDueToShutdown, the sequencer client will eventually close the subscription.

  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. val done: HandlerResult

    Denotes that the synchronous processing stage for an event has completed and there is no asynchronous processing for this stage.

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def fromFuture(future: Future[Unit])(implicit ec: ExecutionContext): HandlerResult

    Shorthand for synchronous(FutureUnlessShutdown.outcomeF(future))

  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def synchronous(future: FutureUnlessShutdown[Unit])(implicit ec: ExecutionContext): HandlerResult

    The given com.digitalasset.canton.lifecycle.FutureUnlessShutdown shall be run synchronously, i.e., later stages of processing the request will not start until this future has completed with a com.digitalasset.canton.lifecycle.UnlessShutdown.Outcome.

    The given com.digitalasset.canton.lifecycle.FutureUnlessShutdown shall be run synchronously, i.e., later stages of processing the request will not start until this future has completed with a com.digitalasset.canton.lifecycle.UnlessShutdown.Outcome. Later requests will also only be processed after this future has completed with an com.digitalasset.canton.lifecycle.UnlessShutdown.Outcome. If the future fails with an exception or returns com.digitalasset.canton.lifecycle.UnlessShutdown.AbortedDueToShutdown, the sequencer client will close the subscription.

  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. def unlessShutdown(x: UnlessShutdown[Unit]): HandlerResult

    Embeds an evaluated com.digitalasset.canton.lifecycle.UnlessShutdown into a synchronous HandlerResult.

  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  23. 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
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped