final case class IOResult(count: Long, status: Try[Done]) extends Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- IOResult
- Serializable
- Product
- Equals
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
Deprecated Value Members
- def getError: Throwable
Java API: If the IO operation resulted in an error, returns the corresponding Throwable or throws UnsupportedOperationException otherwise.
Java API: If the IO operation resulted in an error, returns the corresponding Throwable or throws UnsupportedOperationException otherwise.
- Annotations
- @deprecated
- Deprecated
(Since version 2.6.0) status is always set to Success(Done)
- val status: [Done]
- Annotations
- @deprecated
- Deprecated
(Since version 2.6.0) status is always set to Success(Done)
- def wasSuccessful: Boolean
Java API: Indicates whether IO operation completed successfully or not.
Java API: Indicates whether IO operation completed successfully or not.
- Annotations
- @deprecated
- Deprecated
(Since version 2.6.0) status is always set to Success(Done)
- def withStatus(value: [Done]): IOResult
- Annotations
- @deprecated
- Deprecated
(Since version 2.6.0) status is always set to Success(Done)
Holds a result of an IO operation.
Numeric value depending on context, for example IO operations performed or bytes processed.
Status of the result. Can be either akka.Done or an exception.