Package akka.stream
Class IOResult
- java.lang.Object
-
- akka.stream.IOResult
-
- All Implemented Interfaces:
java.io.Serializable
,scala.Equals
,scala.Product
public final class IOResult extends java.lang.Object implements scala.Product, java.io.Serializable
Holds a result of an IO operation.param: count Numeric value depending on context, for example IO operations performed or bytes processed. param: status Status of the result. Can be either
Done
or an exception.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static IOResult
apply(long count)
static IOResult
apply(long count, scala.util.Try<Done> status)
boolean
canEqual(java.lang.Object x$1)
IOResult
copy(long count, scala.util.Try<Done> status)
long
copy$default$1()
scala.util.Try<Done>
copy$default$2()
long
count()
static IOResult
createFailed(long count, java.lang.Throwable ex)
Deprecated.use IOOperationIncompleteException.static IOResult
createSuccessful(long count)
JAVA API: Creates successful IOResultboolean
equals(java.lang.Object x$1)
long
getCount()
Java API: Numeric value depending on context, for example IO operations performed or bytes processed.java.lang.Throwable
getError()
Deprecated.status is always set to Success(Done).int
hashCode()
int
productArity()
java.lang.Object
productElement(int x$1)
java.lang.String
productElementName(int x$1)
scala.collection.Iterator<java.lang.Object>
productIterator()
java.lang.String
productPrefix()
scala.util.Try<Done>
status()
Deprecated.status is always set to Success(Done).java.lang.String
toString()
static scala.Option<scala.Tuple2<java.lang.Object,scala.util.Try<Done>>>
unapply(IOResult x$0)
boolean
wasSuccessful()
Deprecated.status is always set to Success(Done).IOResult
withCount(long value)
IOResult
withStatus(scala.util.Try<Done> value)
Deprecated.status is always set to Success(Done).
-
-
-
Constructor Detail
-
IOResult
public IOResult(long count, scala.util.Try<Done> status)
-
-
Method Detail
-
apply
public static IOResult apply(long count)
-
createSuccessful
public static IOResult createSuccessful(long count)
JAVA API: Creates successful IOResult
-
createFailed
public static IOResult createFailed(long count, java.lang.Throwable ex)
Deprecated.use IOOperationIncompleteException. Since 2.6.0.
-
unapply
public static scala.Option<scala.Tuple2<java.lang.Object,scala.util.Try<Done>>> unapply(IOResult x$0)
-
count
public long count()
-
status
public scala.util.Try<Done> status()
Deprecated.status is always set to Success(Done). Since 2.6.0.
-
withCount
public IOResult withCount(long value)
-
withStatus
public IOResult withStatus(scala.util.Try<Done> value)
Deprecated.status is always set to Success(Done). Since 2.6.0.
-
getCount
public long getCount()
Java API: Numeric value depending on context, for example IO operations performed or bytes processed.
-
wasSuccessful
public boolean wasSuccessful()
Deprecated.status is always set to Success(Done). Since 2.6.0.Java API: Indicates whether IO operation completed successfully or not.
-
getError
public java.lang.Throwable getError()
Deprecated.status is always set to Success(Done). Since 2.6.0.Java API: If the IO operation resulted in an error, returns the correspondingThrowable
or throwsUnsupportedOperationException
otherwise.
-
copy$default$1
public long copy$default$1()
-
copy$default$2
public scala.util.Try<Done> copy$default$2()
-
productPrefix
public java.lang.String productPrefix()
- Specified by:
productPrefix
in interfacescala.Product
-
productArity
public int productArity()
- Specified by:
productArity
in interfacescala.Product
-
productElement
public java.lang.Object productElement(int x$1)
- Specified by:
productElement
in interfacescala.Product
-
productIterator
public scala.collection.Iterator<java.lang.Object> productIterator()
- Specified by:
productIterator
in interfacescala.Product
-
canEqual
public boolean canEqual(java.lang.Object x$1)
- Specified by:
canEqual
in interfacescala.Equals
-
productElementName
public java.lang.String productElementName(int x$1)
- Specified by:
productElementName
in interfacescala.Product
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object x$1)
- Specified by:
equals
in interfacescala.Equals
- Overrides:
equals
in classjava.lang.Object
-
-