Packages

final case class IOResult(count: Long, status: Try[Done]) extends Product with Serializable

Holds a result of an IO operation.

count

Numeric value depending on context, for example IO operations performed or bytes processed.

status

Status of the result. Can be either akka.Done or an exception.

Source
IOResult.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IOResult
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IOResult(count: Long, status: Try[Done])

    count

    Numeric value depending on context, for example IO operations performed or bytes processed.

    status

    Status of the result. Can be either akka.Done or an exception.

Value Members

  1. val count: Long
  2. def getCount: Long

    Java API: Numeric value depending on context, for example IO operations performed or bytes processed.

  3. def getError: Throwable

    Java API: If the IO operation resulted in an error, returns the corresponding Throwable or throws UnsupportedOperationException otherwise.

  4. val status: Try[Done]
  5. def wasSuccessful: Boolean

    Java API: Indicates whether IO operation completed successfully or not.

  6. def withCount(value: Long): IOResult
  7. def withStatus(value: Try[Done]): IOResult