summaryrefslogtreecommitdiff
path: root/test/files/jvm/actmig-hierarchy.scala
blob: 17a44fda7a50345723e5f56a7daaccada9c9f67b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
 * 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 Reactor[String] {
   def act() {
     var cond = true
     loopWhile(cond) {
       react {
         case x if x == "hello1" => println("hello")
         case "exit" => cond = false
       }
     }
   }
}

class ReplyActor extends ReplyReactor {
   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"
  }
}