Packages

c

sbt.Scoped

RichInitTaskBase

sealed abstract class RichInitTaskBase[S, R[_]] extends AnyRef

Enriches Initialize[R[S]] types. Abstracts over the specific task-like type constructor.

S

the type of the underlying vault

R

the task-like type constructor (either Task or InputTask)

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

Abstract Value Members

  1. abstract def onTask[T](f: (Task[S]) ⇒ Task[T]): Def.Initialize[R[T]]
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &&[T](alt: Task[T]): Def.Initialize[R[T]]
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def andFinally(fin: ⇒ Unit): Def.Initialize[R[S]]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def doFinally(t: Task[Unit]): Def.Initialize[R[S]]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def flatMap[T](f: (S) ⇒ Task[T]): Def.Initialize[R[T]]
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def map[T](f: (S) ⇒ T): Def.Initialize[R[T]]
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def tag(tags: Tag*): Def.Initialize[R[S]]
  22. def tagw(tags: (Tag, Int)*): Def.Initialize[R[S]]
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  27. def ||[T >: S](alt: Task[T]): Def.Initialize[R[T]]

Deprecated Value Members

  1. def flatFailure[T](f: (Incomplete) ⇒ Task[T]): Def.Initialize[R[T]]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.13.0) Use the failure method to create a task that returns Incomplete when this task fails and then call flatMap on the new task.

  2. def flatMapR[T](f: (Result[S]) ⇒ Task[T]): Def.Initialize[R[T]]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.13.0) Use the result method to create a task that returns the full Result of this task. Then, call flatMap on the new task.

  3. def mapFailure[T](f: (Incomplete) ⇒ T): Def.Initialize[R[T]]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.13.0) Use the failure method to create a task that returns Incomplete when this task fails and then call map on the new task.

  4. def mapR[T](f: (Result[S]) ⇒ T): Def.Initialize[R[T]]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.13.0) Use the result method to create a task that returns the full Result of this task. Then, call map on the new task.

Inherited from AnyRef

Inherited from Any

Ungrouped