Package akka.routing
Class RoundRobinRoutingLogic
- java.lang.Object
 - 
- akka.routing.RoundRobinRoutingLogic
 
 
- 
- All Implemented Interfaces:
 NoSerializationVerificationNeeded,RoutingLogic
public final class RoundRobinRoutingLogic extends java.lang.Object implements RoutingLogic
Uses round-robin to select a routee. For concurrent calls, round robin is just a best effort. 
- 
- 
Constructor Summary
Constructors Constructor Description RoundRobinRoutingLogic() 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RoundRobinRoutingLogicapply()java.util.concurrent.atomic.AtomicLongnext()Routeeselect(java.lang.Object message, scala.collection.immutable.IndexedSeq<Routee> routees)Pick the destination for a given message. 
 - 
 
- 
- 
Method Detail
- 
apply
public static RoundRobinRoutingLogic apply()
 
- 
next
public java.util.concurrent.atomic.AtomicLong next()
 
- 
select
public Routee select(java.lang.Object message, scala.collection.immutable.IndexedSeq<Routee> routees)
Description copied from interface:RoutingLogicPick the destination for a given message. Normally it picks one of the passedroutees, but in the end it is up to the implementation to return whateverRouteeto 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 theIndexedSeq.- Specified by:
 selectin interfaceRoutingLogic
 
 - 
 
 -