summaryrefslogblamecommitdiff
path: root/test/files/detach-run/basic/Server.scala
blob: f8aa02a4ba2aadf29d9c653c41ec2f4a8192215c (plain) (tree)
1
2
3
4



                              















                                                 

   
/*
 *  @author Stephane Micheloud
 */

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()
  }
}