summaryrefslogblamecommitdiff
path: root/test/files/detach-run/basic/Server.scala
blob: 02150b36ff5fed2ad28026387ba6f3da178b240f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                 

   
import scala.remoting.ServerChannel

object Server extends ServerConsole {
  private def computation(f: Int => Int): Int = {
    //some time-consuming task
    f(2)
  }
  def main(args: Array[String]) {
    val server = new ServerChannel(args(0).toInt)
    loop {
      val client = server.accept
      val f = client.receive[Int => Int]
      val result = computation(f)
      client ! result
    }
    server.close()
  }
}