Package org.apache.pekko.routing
Class RoundRobinRoutingLogic
java.lang.Object
org.apache.pekko.routing.RoundRobinRoutingLogic
- All Implemented Interfaces:
NoSerializationVerificationNeeded,RoutingLogic
Uses round-robin to select a routee. For concurrent calls,
round robin is just a best effort.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic RoundRobinRoutingLogicapply()next()Pick the destination for a given message.
-
Constructor Details
-
RoundRobinRoutingLogic
public RoundRobinRoutingLogic()
-
-
Method Details
-
apply
-
next
-
select
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 whateverpekko.routing.Routeeto 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
-