object HandlerResult
- Alphabetic
- By Inheritance
- HandlerResult
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- 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.
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- val done: HandlerResult
Denotes that the synchronous processing stage for an event has completed and there is no asynchronous processing for this stage.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fromFuture(future: Future[Unit])(implicit ec: ExecutionContext): HandlerResult
Shorthand for
synchronous(FutureUnlessShutdown.outcomeF(future))
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- 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.
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unlessShutdown(x: UnlessShutdown[Unit]): HandlerResult
Embeds an evaluated com.digitalasset.canton.lifecycle.UnlessShutdown into a synchronous HandlerResult.
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])