Package org.apache.pekko.routing
Class SmallestMailboxRoutingLogic
java.lang.Object
org.apache.pekko.routing.SmallestMailboxRoutingLogic
- All Implemented Interfaces:
NoSerializationVerificationNeeded,RoutingLogic
Tries to send to the non-suspended routee with fewest messages in mailbox.
The selection is done in this order:
- pick any idle routee (not processing message) with empty mailbox
- pick any routee with empty mailbox
- pick routee with fewest pending messages in mailbox
- pick any remote routee, remote actors are consider lowest priority, since their mailbox size is unknown
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic SmallestMailboxRoutingLogicapply()protected booleanReturns true if the actor currently has any pending messages in the mailbox, i.e.protected booleanReturns true if the actor is currently processing a message.protected booleanReturns true if the actor is currently suspended.protected booleanprotected intReturns the number of pending messages in the mailbox of the actor.Pick the destination for a given message.
-
Constructor Details
-
SmallestMailboxRoutingLogic
public SmallestMailboxRoutingLogic()
-
-
Method Details
-
apply
-
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
-
isTerminated
-
isProcessingMessage
Returns true if the actor is currently processing a message. It will always return false for remote actors. Method is exposed to subclasses to be able to implement custom routers based on mailbox and actor internal state. -
hasMessages
Returns true if the actor currently has any pending messages in the mailbox, i.e. the mailbox is not empty. It will always return false for remote actors. Method is exposed to subclasses to be able to implement custom routers based on mailbox and actor internal state. -
isSuspended
Returns true if the actor is currently suspended. It will always return false for remote actors. Method is exposed to subclasses to be able to implement custom routers based on mailbox and actor internal state. -
numberOfMessages
Returns the number of pending messages in the mailbox of the actor. It will always return 0 for remote actors. Method is exposed to subclasses to be able to implement custom routers based on mailbox and actor internal state.
-