final class BroadcastRoutingLogic extends RoutingLogic
Ordering
- Alphabetic
- By Inheritance
Inherited
- BroadcastRoutingLogic
- RoutingLogic
- NoSerializationVerificationNeeded
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new BroadcastRoutingLogic()
Value Members
- def select(message: Any, routees: [Routee]): Routee
Pick the destination for a given message.
Pick the destination for a given message. Normally it picks one of the passed
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 theIndexedSeq
.- Definition Classes
- → RoutingLogic
Broadcasts a message to all its routees.