2013-04-16 22:31:09 +02:00
|
|
|
/**
|
|
|
|
|
* Copyright (C) 2009-2013 Typesafe Inc. <http://www.typesafe.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package docs.actor;
|
|
|
|
|
|
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
2013-05-02 17:12:36 +02:00
|
|
|
import akka.testkit.AkkaJUnitActorSystemResource;
|
|
|
|
|
import org.junit.ClassRule;
|
2013-04-16 22:31:09 +02:00
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
|
|
import scala.concurrent.duration.Duration;
|
|
|
|
|
import akka.actor.ActorRef;
|
|
|
|
|
import akka.actor.ActorSystem;
|
|
|
|
|
import akka.actor.Inbox;
|
|
|
|
|
import akka.actor.PoisonPill;
|
|
|
|
|
import akka.actor.Terminated;
|
|
|
|
|
import akka.testkit.AkkaSpec;
|
|
|
|
|
import akka.testkit.JavaTestKit;
|
|
|
|
|
|
|
|
|
|
public class InboxDocTest {
|
|
|
|
|
|
2013-05-02 17:12:36 +02:00
|
|
|
@ClassRule
|
|
|
|
|
public static AkkaJUnitActorSystemResource actorSystemResource =
|
|
|
|
|
new AkkaJUnitActorSystemResource("InboxDocTest", AkkaSpec.testConf());
|
2013-04-16 22:31:09 +02:00
|
|
|
|
2013-05-02 17:12:36 +02:00
|
|
|
private final ActorSystem system = actorSystemResource.getSystem();
|
2013-04-16 22:31:09 +02:00
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void demonstrateInbox() {
|
|
|
|
|
final JavaTestKit probe = new JavaTestKit(system);
|
|
|
|
|
final ActorRef target = probe.getRef();
|
|
|
|
|
//#inbox
|
|
|
|
|
final Inbox inbox = Inbox.create(system);
|
|
|
|
|
inbox.send(target, "hello");
|
|
|
|
|
//#inbox
|
|
|
|
|
probe.expectMsgEquals("hello");
|
|
|
|
|
probe.send(probe.getLastSender(), "world");
|
|
|
|
|
//#inbox
|
|
|
|
|
assert inbox.receive(Duration.create(1, TimeUnit.SECONDS)).equals("world");
|
|
|
|
|
//#inbox
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void demonstrateWatch() {
|
|
|
|
|
final JavaTestKit probe = new JavaTestKit(system);
|
|
|
|
|
final ActorRef target = probe.getRef();
|
|
|
|
|
//#watch
|
|
|
|
|
final Inbox inbox = Inbox.create(system);
|
|
|
|
|
inbox.watch(target);
|
|
|
|
|
target.tell(PoisonPill.getInstance(), null);
|
|
|
|
|
assert inbox.receive(Duration.create(1, TimeUnit.SECONDS)) instanceof Terminated;
|
|
|
|
|
//#watch
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|