Created
June 9, 2015 23:50
-
-
Save gaocegege/689f926645c820993804 to your computer and use it in GitHub Desktop.
scala actor example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scala.actors.Actor | |
import scala.actors.Actor._ | |
object Main { | |
class Pong extends Actor { | |
def act() { | |
var pongCount = 0 | |
while (true) { | |
receive { | |
case "Ping" => | |
if (pongCount % 1000 == 0) | |
Console.println("Pong: ping "+pongCount) | |
sender ! "Pong" | |
pongCount = pongCount + 1 | |
case "Stop" => | |
Console.println("Pong: stop") | |
exit() | |
} | |
} | |
} | |
} | |
class Ping(count: Int, pong: Actor) extends Actor { | |
def act() { | |
var pingsLeft = count - 1 | |
pong ! "Ping" | |
while (true) { | |
receive { | |
case "Pong" => | |
if (pingsLeft % 1000 == 0) | |
Console.println("Ping: pong") | |
if (pingsLeft > 0) { | |
pong ! "Ping" | |
pingsLeft -= 1 | |
} else { | |
Console.println("Ping: stop") | |
pong ! "Stop" | |
exit() | |
} | |
} | |
} | |
} | |
} | |
def main(args: Array[String]): Unit = { | |
val pong = new Pong | |
val ping = new Ping(100000, pong) | |
ping.start | |
pong.start | |
println("???") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment