Package org.akka.essentials.unittest.actors

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


  @Test
  public void testFilteringActor() {
    ActorRef filteringActorRef = _system.actorOf(new Props(
        new UntypedActorFactory() {
          public UntypedActor create() {
            return new FilteringActor(testActor());
          }
        }));
    // pass the reference to implicit sender testActor() otherwise
    // message end up in dead mailbox
    // first test
View Full Code Here

TOP

Related Classes of org.akka.essentials.unittest.actors.FilteringActor

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.