Package akka
Class Done
- java.lang.Object
- 
- akka.Done
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 - Direct Known Subclasses:
- Done$
 
 public abstract class Done extends java.lang.Object implements java.io.SerializableTypically used together withFutureto signal completion but there is no actual value completed. More clearly signals intent thanUnitand is available both from Scala and Java (whichUnitis not).- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description Done()
 - 
Method SummaryAll Methods Static Methods Abstract Methods Concrete Methods Modifier and Type Method Description static booleancanEqual(java.lang.Object x$1)static Donedone()Java API: the singleton instanceabstract static booleanequals(java.lang.Object that)static DonegetInstance()Java API: the singleton instancestatic inthashCode()static intproductArity()static java.lang.ObjectproductElement(int x$1)static java.lang.StringproductElementName(int n)static scala.collection.Iterator<java.lang.String>productElementNames()static scala.collection.Iterator<java.lang.Object>productIterator()static java.lang.StringproductPrefix()static java.lang.StringtoString()
 
- 
- 
- 
Method Detail- 
getInstancepublic static Done getInstance() Java API: the singleton instance
 - 
donepublic static Done done() Java API: the singleton instanceThis is equivalent to Done.getInstance, but can be used with static import.
 - 
productPrefixpublic static java.lang.String productPrefix() 
 - 
productAritypublic static int productArity() 
 - 
productElementpublic static java.lang.Object productElement(int x$1) 
 - 
productIteratorpublic static scala.collection.Iterator<java.lang.Object> productIterator() 
 - 
canEqualpublic static boolean canEqual(java.lang.Object x$1) 
 - 
hashCodepublic static int hashCode() 
 - 
toStringpublic static java.lang.String toString() 
 - 
equalspublic abstract static boolean equals(java.lang.Object that) 
 - 
productElementNamepublic static java.lang.String productElementName(int n) 
 - 
productElementNamespublic static scala.collection.Iterator<java.lang.String> productElementNames() 
 
- 
 
-