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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
@deprecated("Suppress warnings", since="2.11")
object Test {
import scala.actors.{Reactor, Actor, TIMEOUT}
import Actor._
def assert(cond: => Boolean, hint: String) {
if (!cond)
println("FAIL ["+hint+"]")
}
def expectActorState(a: Reactor[T] forSome { type T }, s: Actor.State.Value) {
var done = false
var i = 0
while (!done) {
i = i + 1
if (i == 10) { // only wait for 2 seconds total
println("FAIL ["+a+": expected "+s+"]")
done = true
}
Thread.sleep(200)
if (a.getState == s) // success
done = true
}
}
def main(args: Array[String]) {
actor {
val a = new Reactor[Any] {
def act() {
assert(getState == Actor.State.Runnable, "runnable1")
react {
case 'go =>
println("OK")
}
}
}
expectActorState(a, Actor.State.New)
a.start()
expectActorState(a, Actor.State.Suspended)
a ! 'go
expectActorState(a, Actor.State.Terminated)
val b = new Actor {
def act() {
assert(getState == Actor.State.Runnable, "runnable2: "+getState)
react {
case 'go =>
reactWithin(100000) {
case TIMEOUT =>
case 'go =>
receive {
case 'go =>
}
receiveWithin(100000) {
case TIMEOUT =>
case 'go =>
println("OK")
}
}
}
}
}
expectActorState(b, Actor.State.New)
b.start()
expectActorState(b, Actor.State.Suspended)
b ! 'go
expectActorState(b, Actor.State.TimedSuspended)
b ! 'go
expectActorState(b, Actor.State.Blocked)
b ! 'go
expectActorState(b, Actor.State.TimedBlocked)
b ! 'go
expectActorState(b, Actor.State.Terminated)
}
}
}
|