Package akka.routing
Class SmallestMailboxRoutingLogic
- java.lang.Object
-
- akka.routing.SmallestMailboxRoutingLogic
-
- All Implemented Interfaces:
NoSerializationVerificationNeeded
,RoutingLogic
public class SmallestMailboxRoutingLogic extends java.lang.Object implements 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 Constructor Description SmallestMailboxRoutingLogic()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SmallestMailboxRoutingLogic
apply()
protected boolean
hasMessages(Routee a)
Returns true if the actor currently has any pending messages in the mailbox, i.e.protected boolean
isProcessingMessage(Routee a)
Returns true if the actor is currently processing a message.protected boolean
isSuspended(Routee a)
Returns true if the actor is currently suspended.protected boolean
isTerminated(Routee a)
protected int
numberOfMessages(Routee a)
Returns the number of pending messages in the mailbox of the actor.Routee
select(java.lang.Object message, scala.collection.immutable.IndexedSeq<Routee> routees)
Pick the destination for a given message.
-
-
-
Method Detail
-
apply
public static SmallestMailboxRoutingLogic apply()
-
select
public Routee select(java.lang.Object message, scala.collection.immutable.IndexedSeq<Routee> routees)
Description copied from interface:RoutingLogic
Pick 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 whateverRoutee
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 theIndexedSeq
.- Specified by:
select
in interfaceRoutingLogic
-
isTerminated
protected boolean isTerminated(Routee a)
-
isProcessingMessage
protected boolean isProcessingMessage(Routee a)
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
protected boolean hasMessages(Routee a)
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
protected boolean isSuspended(Routee a)
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
protected int numberOfMessages(Routee a)
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.
-
-