o

com.digitalasset.canton.lifecycle

FutureUnlessShutdown

object FutureUnlessShutdown

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

Value Members

  1. val abortedDueToShutdown: FutureUnlessShutdown[Nothing]

    Immediately report UnlessShutdown.AbortedDueToShutdown

  2. def apply[A](x: Future[UnlessShutdown[A]]): FutureUnlessShutdown[A]

    Close the type abstraction of FutureUnlessShutdown

  3. def failed[A](ex: Throwable): FutureUnlessShutdown[A]

    Analog to scala.concurrent.Future.failed

  4. def lift[A](x: UnlessShutdown[A]): FutureUnlessShutdown[A]
  5. def liftK: ~>[UnlessShutdown, FutureUnlessShutdown]
  6. def outcomeF[A](f: Future[A])(implicit ec: ExecutionContext): FutureUnlessShutdown[A]

    Wraps the result of a scala.concurrent.Future into an UnlessShutdown.Outcome

  7. def outcomeK(implicit ec: ExecutionContext): ~>[Future, FutureUnlessShutdown]

    outcomeF as a cats.arrow.FunctionK to be used with Cat's mapK operation.

    outcomeF as a cats.arrow.FunctionK to be used with Cat's mapK operation.

    Can be used to switch from scala.concurrent.Future to FutureUnlessShutdown inside another functor/applicative/monad such as cats.data.EitherT via eitherT.mapK(outcomeK).

  8. def pure[A](x: A): FutureUnlessShutdown[A]

    Analog to scala.concurrent.Future.successful

  9. val unit: FutureUnlessShutdown[Unit]

    Analog to scala.concurrent.Future.unit

  10. object syntax