summaryrefslogtreecommitdiff
path: root/test/files/jvm/actmig-hierarchy_1.scala
blob: 14f03c9d481b9c549ee8a51e7036644885e61018 (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
/**
 * 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"
  }
}