Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using Scala with Akka IO is there a way to have an Actor strictly for listening and then when a connection is established create a new actor that will then be responsible for that Socket (Reading, Writing, etc)?

So far I have this. The problem is that the Server actor is receiving the data. I would like to transfer ownership of the socket to the new created Client actor so that it receives any messages related to the socket. Anyone know how to do that?

Edit: added solution. I just needed to pass the ActorRef into the curried parameter of accept

import akka.actor._
import akka.actor.IO.SocketHandle
import java.net.InetSocketAddress


/**
 * Purpose:
 * User: chuck
 * Date: 17/01/13
 * Time: 5:37 PM
 */
object Main {

  class Server extends Actor {

    override def preStart() {
      IOManager(context.system) listen new InetSocketAddress(3333)
    }

    def receive = {

      case IO.NewClient(server) =>

        val client = context.actorOf(Props(new Client()))
        server.accept()(client)
        println("Client accepted")

      case IO.Read(socket, bytes) =>
        println("Server " + bytes)


    }
  }

  class Client() extends Actor {

    def receive = {

      case IO.Read(socket, bytes) =>
        println("Client " + bytes)

      case IO.Closed(socket, reason) =>
        println("Socket closed " + reason)

    }

  }

  def main(args: Array[String]) {
    val system = ActorSystem()
    system.actorOf(Props(new Server))
  }

}

Thanks!

share|improve this question
what have your tried? what is the exact problem? – om-nom-nom Jan 18 at 23:23
Just figured it out val socket = server.accept() needs to be val socket = server.accept()(client) where client is the newly created actor – tkblackbelt Jan 19 at 2:21
1  
There is work going on on a new IO layer that the Akka team designed in collaboration with the spray.io team that will be much more flexible. You might want to look into that when it comes out. – Endre Varga Jan 21 at 16:08
Thanks for the tip. Seems really cool. – tkblackbelt Jan 22 at 4:07
If you have a solution, you should make it an answer and accept it so we know it is solved. – ricard.m.o. 15 hours ago

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.