Package akka.routing

Examples of akka.routing.Destination


      ActorRef actor = routees.get(actorSeq);

      public Iterable<Destination> destinationsFor(ActorRef sender,
          Object message) {
        List<Destination> destinationList = Arrays
            .asList(new Destination[] { new Destination(sender,
                actor) });
        // increment message count
        synchronized (this) {
          messageCount++;
        }
View Full Code Here

TOP

Related Classes of akka.routing.Destination

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.