public final class ScatterGatherFirstCompletedRoutingLogic extends java.lang.Object implements RoutingLogic, scala.Product, scala.Serializable
param: within expecting at least one reply within this duration, otherwise
it will reply with AskTimeoutException in a Status.Failure
| Constructor and Description |
|---|
ScatterGatherFirstCompletedRoutingLogic(scala.concurrent.duration.FiniteDuration within) |
| Modifier and Type | Method and Description |
|---|---|
abstract static boolean |
canEqual(java.lang.Object that) |
abstract static boolean |
equals(java.lang.Object that) |
abstract static int |
productArity() |
abstract static java.lang.Object |
productElement(int n) |
static scala.collection.Iterator<java.lang.Object> |
productIterator() |
static java.lang.String |
productPrefix() |
Routee |
select(java.lang.Object message,
scala.collection.immutable.IndexedSeq<Routee> routees)
Pick the destination for a given message.
|
scala.concurrent.duration.FiniteDuration |
within() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitpublic ScatterGatherFirstCompletedRoutingLogic(scala.concurrent.duration.FiniteDuration within)
public abstract static boolean canEqual(java.lang.Object that)
public abstract static boolean equals(java.lang.Object that)
public abstract static java.lang.Object productElement(int n)
public abstract static int productArity()
public static scala.collection.Iterator<java.lang.Object> productIterator()
public static java.lang.String productPrefix()
public scala.concurrent.duration.FiniteDuration within()
public Routee select(java.lang.Object message, scala.collection.immutable.IndexedSeq<Routee> routees)
RoutingLogicroutees, but in the end it is up to the implementation to
return whatever Routee to use for sending a specific message.
When implemented from Java it can be good to know that
routees.apply(index) can be used to get an element
from the IndexedSeq.
select in interface RoutingLogicmessage - (undocumented)routees - (undocumented)