Result

sbt.Result
See theResult companion object
enum Result[+A]

Result of completely evaluating a task.

Attributes

Companion
object
Graph
Supertypes
trait Enum
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Known subtypes
case Inc
case Value[A]

Members list

Type members

Enum entries

final case class Inc(cause: Incomplete) extends Result[Nothing]

Indicates the task did not complete normally and so it does not have a value.

Indicates the task did not complete normally and so it does not have a value.

Attributes

final case class Value[+A](value: A) extends Result[A]

Indicates the task completed normally and produced the given value.

Indicates the task completed normally and produced the given value.

Attributes