Examples of SequencingActor


Examples of org.akka.essentials.unittest.actors.SequencingActor

      tailList.add(i);

    ActorRef sequencingActorRef = _system.actorOf(new Props(
        new UntypedActorFactory() {
          public UntypedActor create() {
            return new SequencingActor(testActor(), headList,
                tailList);
          }
        }));

    // pass the reference to implicit sender testActor() otherwise
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.