summaryrefslogtreecommitdiff
path: root/test/files/jvm/actmig-react-within.scala
diff options
context:
space:
mode:
authorVojin Jovanovic <vojin.jovanovic@epfl.ch>2012-09-24 17:06:08 +0200
committerVojin Jovanovic <vojin.jovanovic@epfl.ch>2012-09-25 11:14:46 +0200
commit3ba88113f23a1cd614366d770cb22fd2c6336771 (patch)
treef1bfb46d34f3538ffdc1f5b567b33e889febfd96 /test/files/jvm/actmig-react-within.scala
parentb92becd757d8319129fa8bd0a93af8c6fd2b23b7 (diff)
downloadscala-3ba88113f23a1cd614366d770cb22fd2c6336771.tar.gz
scala-3ba88113f23a1cd614366d770cb22fd2c6336771.tar.bz2
scala-3ba88113f23a1cd614366d770cb22fd2c6336771.zip
Additional Actor Migration Tests.
Review by @phaller.
Diffstat (limited to 'test/files/jvm/actmig-react-within.scala')
-rw-r--r--test/files/jvm/actmig-react-within.scala48
1 files changed, 48 insertions, 0 deletions
diff --git a/test/files/jvm/actmig-react-within.scala b/test/files/jvm/actmig-react-within.scala
new file mode 100644
index 0000000000..43350ef120
--- /dev/null
+++ b/test/files/jvm/actmig-react-within.scala
@@ -0,0 +1,48 @@
+/**
+ * NOTE: Code snippets from this test are included in the Actor Migration Guide. In case you change
+ * code in these tests prior to the 2.10.0 release please send the notification to @vjovanov.
+ */
+import scala.actors.migration.MigrationSystem._
+import scala.actors.Actor._
+import scala.actors._
+import scala.actors.migration._
+import java.util.concurrent.{ TimeUnit, CountDownLatch }
+import scala.collection.mutable.ArrayBuffer
+import scala.concurrent.duration._
+import scala.concurrent.{ Promise, Await }
+
+object Test {
+ val finished = Promise[Boolean]
+
+ def testReactWithin() = {
+ val sActor = actor {
+ loop {
+ reactWithin(1) {
+ case scala.actors.TIMEOUT =>
+ println("received")
+ exit()
+ case _ =>
+ println("Should not occur.")
+ }
+ }
+ }
+
+ val myActor = MigrationSystem.actorOf(Props(() => new StashingActor {
+ context.setReceiveTimeout(1 millisecond)
+ def receive = {
+ case ReceiveTimeout =>
+ println("received")
+ finished.success(true)
+ context.stop(self)
+ case _ =>
+ println("Should not occur.")
+ }
+ }, "default-stashing-dispatcher"))
+ }
+
+ def main(args: Array[String]) = {
+ testReactWithin()
+ Await.ready(finished.future, 5 seconds)
+ }
+
+}