Class/Object

datto.flow

FlowResult

Related Docs: object FlowResult | package flow

Permalink

case class FlowResult[+T, Ctx](value: Try[T], context: Ctx, metadata: Metadata = Metadata(), timings: TimingList = TimingList()) extends Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FlowResult
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FlowResult(value: Try[T], context: Ctx, metadata: Metadata = Metadata(), timings: TimingList = TimingList())

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addMetadata(f: (T) ⇒ MetadataEntry): FlowResult[T, Ctx]

    Permalink
  5. def addMetadata(entries: Seq[MetadataEntry]): FlowResult[T, Ctx]

    Permalink
  6. def addMetadata(entry: MetadataEntry): FlowResult[T, Ctx]

    Permalink
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. val context: Ctx

    Permalink
  10. val creationTime: Long

    Permalink
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def filter[U](f: (T) ⇒ Boolean): FlowResult[T, Ctx]

    Permalink
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def flatMap[U](f: (T) ⇒ Try[U]): FlowResult[U, Ctx]

    Permalink
  15. def flatMapAsync[U](f: (T) ⇒ Future[Try[U]])(implicit ec: ExecutionContext): Future[FlowResult[U, Ctx]]

    Permalink
  16. def flatMapWithContext[U](f: (T, Ctx, Metadata) ⇒ Try[U]): FlowResult[U, Ctx]

    Permalink
  17. def flatMapWithContextAsync[U](f: (T, Ctx, Metadata) ⇒ Future[Try[U]])(implicit ec: ExecutionContext): Future[FlowResult[U, Ctx]]

    Permalink
  18. def flatten[U](implicit ev: <:<[T, Try[U]]): FlowResult[U, Ctx]

    Permalink
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def getOrElse[U >: T](default: ⇒ U): U

    Permalink
  21. def isFailure: Boolean

    Permalink
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def isSuccess: Boolean

    Permalink
  24. def map[U](f: (T) ⇒ U): FlowResult[U, Ctx]

    Permalink
  25. def mapAsync[U](f: (T) ⇒ Future[U])(implicit ec: ExecutionContext): Future[FlowResult[U, Ctx]]

    Permalink
  26. def mapConcat[U](f: (T) ⇒ Iterable[U]): Iterable[FlowResult[U, Ctx]]

    Permalink
  27. def mapResultAsync[U](f: (FlowResult[T, Ctx]) ⇒ Future[FlowResult[U, Ctx]])(implicit ec: ExecutionContext): Future[FlowResult[U, Ctx]]

    Permalink
  28. def mapWithContext[U](f: (T, Ctx, Metadata) ⇒ U): FlowResult[U, Ctx]

    Permalink
  29. def mapWithContextAsync[U](f: (T, Ctx, Metadata) ⇒ Future[U])(implicit ec: ExecutionContext): Future[FlowResult[U, Ctx]]

    Permalink
  30. val metadata: Metadata

    Permalink
  31. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  32. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  34. def orElse[U >: T](default: ⇒ Try[U]): FlowResult[U, Ctx]

    Permalink
  35. def recover[U >: T](f: PartialFunction[Throwable, U]): FlowResult[U, Ctx]

    Permalink
  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  37. val timings: TimingList

    Permalink
  38. def toOption: Option[T]

    Permalink
  39. def transform[U](s: (T) ⇒ Try[U], f: (Throwable) ⇒ Try[U]): FlowResult[U, Ctx]

    Permalink
  40. val value: Try[T]

    Permalink
  41. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped