final class DrxFuture[A] extends AnyVal
- Source
- wrapper.scala
- Alphabetic
- By Inheritance
- DrxFuture
- AnyVal
- Any
- by richDrxAny
- by DrxBoundOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new DrxFuture(future: drx.Future[A])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- def +(other: String): String
- def ->[B](y: B): (DrxFuture[A], B)
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- def applyIf(t: Boolean, f: (DrxFuture[A]) => DrxFuture[A]): DrxFuture[A]
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def applyIf(t: (DrxFuture[A]) => Boolean)(f: (DrxFuture[A]) => DrxFuture[A]): DrxFuture[A]
better chaining for types
better chaining for types
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def block(maxWaitTime: Time): drx.Try[A]
- def blockWithoutWarning(maxWaitTime: Time): drx.Try[A]
- def elementOf(xs: Set[DrxFuture[A]]): Boolean
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def ensuring(cond: (DrxFuture[A]) => Boolean, msg: => Any): DrxFuture[A]
- def ensuring(cond: (DrxFuture[A]) => Boolean): DrxFuture[A]
- def ensuring(cond: Boolean, msg: => Any): DrxFuture[A]
- def ensuring(cond: Boolean): DrxFuture[A]
- def formatted(fmtstr: String): String
- val future: drx.Future[A]
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def noneIf(f: (DrxFuture[A]) => Boolean): Option[DrxFuture[A]]
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def optionIf(f: (DrxFuture[A]) => Boolean): Option[DrxFuture[A]]
optionally wrap an object
optionally wrap an object
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def preApply[B](f: (DrxFuture[A]) => B): B
a preApply f => f(a)
a preApply f => f(a)
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def sideEffect(f: (DrxFuture[A]) => Unit): DrxFuture[A]
side effect filter
side effect filter
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def someIf(f: (DrxFuture[A]) => Boolean): Option[DrxFuture[A]]
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def successOption: Option[A]
useful for skipping over a Future if it hasn't completed yet versus just waiting for it to finish
- val thisAny: DrxFuture[A]
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- def till(maxArg: DrxFuture[A]): Bound[DrxFuture[A]]
Bound construction since the Range constructor is deprecated
Bound construction since the Range constructor is deprecated
- def toString(): String
- Definition Classes
- Any
Deprecated Value Members
- def ?>(f: (DrxFuture[A]) => Boolean): Option[DrxFuture[A]]
alias for option if
alias for option if
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- Annotations
- @deprecated
- Deprecated
(Since version v0.2.15) to many symbols are hard to undertand
- def successValue: Option[A]
useful for skipping over a Future if it hasn't completed yet versus just waiting for it to finish
useful for skipping over a Future if it hasn't completed yet versus just waiting for it to finish
- Annotations
- @deprecated
- Deprecated
(Since version v0.2.15) use successOption intead to match the scala headOption and tailOption like naming
- def |>[B](f: (DrxFuture[A]) => B): B
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toDrxAny[DrxFuture[A]] performed by method richDrxAny in cc.drx.predef.Enrich.
- Definition Classes
- DrxAny
- Annotations
- @deprecated
- Deprecated
(Since version v0.2.15) use
preApply
if you must (symbols are concise without concision)
- def →[B](y: B): (DrxFuture[A], B)
- Implicit
- This member is added by an implicit conversion from DrxFuture[A] toArrowAssoc[DrxFuture[A]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.