akka.routing
Class SeveralRoutees

java.lang.Object
  extended by akka.routing.SeveralRoutees
All Implemented Interfaces:
Routee, java.io.Serializable, scala.Equals, scala.Product

public class SeveralRoutees
extends java.lang.Object
implements Routee, scala.Product, scala.Serializable

Routee that sends each message to all routees.

See Also:
Serialized Form

Constructor Summary
SeveralRoutees(scala.collection.immutable.IndexedSeq<Routee> routees)
           
SeveralRoutees(java.lang.Iterable<Routee> rs)
          Java API
 
Method Summary
 java.util.List<Routee> getRoutees()
          Java API
 scala.collection.immutable.IndexedSeq<Routee> routees()
           
 void send(java.lang.Object message, ActorRef sender)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface scala.Product
productArity, productElement, productIterator, productPrefix
 
Methods inherited from interface scala.Equals
canEqual, equals
 

Constructor Detail

SeveralRoutees

public SeveralRoutees(scala.collection.immutable.IndexedSeq<Routee> routees)

SeveralRoutees

public SeveralRoutees(java.lang.Iterable<Routee> rs)
Java API

Parameters:
rs - (undocumented)
Method Detail

routees

public scala.collection.immutable.IndexedSeq<Routee> routees()

getRoutees

public java.util.List<Routee> getRoutees()
Java API

Returns:
(undocumented)

send

public void send(java.lang.Object message,
                 ActorRef sender)
Specified by:
send in interface Routee