summaryrefslogtreecommitdiff
path: root/test/files/jvm/actmig-hierarchy_1.scala
diff options
context:
space:
mode:
authorJosh Suereth <joshua.suereth@gmail.com>2012-11-05 12:52:56 -0500
committerJosh Suereth <joshua.suereth@gmail.com>2012-11-05 12:52:56 -0500
commitaedc853040d7774bd39df43a51715f674f99471e (patch)
tree3d9fad1100c241b8663703898e46c030698eafe7 /test/files/jvm/actmig-hierarchy_1.scala
parent999918311b7bf764916431485cb11043f1c220ed (diff)
parent8b598436f64ca4e980c8a38f642085b4d23e2327 (diff)
downloadscala-aedc853040d7774bd39df43a51715f674f99471e.tar.gz
scala-aedc853040d7774bd39df43a51715f674f99471e.tar.bz2
scala-aedc853040d7774bd39df43a51715f674f99471e.zip
Merge branch '2.10.0-wip' into merge-2.10.0
Diffstat (limited to 'test/files/jvm/actmig-hierarchy_1.scala')
-rw-r--r--test/files/jvm/actmig-hierarchy_1.scala45
1 files changed, 0 insertions, 45 deletions
diff --git a/test/files/jvm/actmig-hierarchy_1.scala b/test/files/jvm/actmig-hierarchy_1.scala
deleted file mode 100644
index 14f03c9d48..0000000000
--- a/test/files/jvm/actmig-hierarchy_1.scala
+++ /dev/null
@@ -1,45 +0,0 @@
-/**
- * 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._
-
-class ReactorActor extends Actor {
- def act() {
- var cond = true
- loopWhile(cond) {
- react {
- case x: String if x == "hello1" => println("hello")
- case "exit" => cond = false
- }
- }
- }
-}
-
-class ReplyActor extends Actor {
- def act() {
- var cond = true
- loopWhile(cond) {
- react {
- case "hello" => println("hello")
- case "exit" => cond = false;
- }
- }
- }
-}
-
-object Test {
-
- def main(args: Array[String]) {
- val reactorActor = new ReactorActor
- val replyActor = new ReplyActor
- reactorActor.start()
- replyActor.start()
-
- reactorActor ! "hello1"
- replyActor ! "hello"
-
- reactorActor ! "exit"
- replyActor ! "exit"
- }
-} \ No newline at end of file