public interface RoutingLogic extends NoSerializationVerificationNeeded
Router to select
destination routed messages.
The implementation must be thread safe.
| Modifier and Type | Method and Description |
|---|---|
Routee |
select(java.lang.Object message,
scala.collection.immutable.IndexedSeq<Routee> routees)
Pick the destination for a given message.
|
Routee select(java.lang.Object message, scala.collection.immutable.IndexedSeq<Routee> routees)
routees, 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.
message - (undocumented)routees - (undocumented)