I have a chat application developed in Akka and Scala using Play framework
WebSockets.
I want to make it as an Api based service. For connection , i have used the
similar block from official documentaton as:
object HandlerClass {
def props(out: ActorRef) = {
Props(new SocketHandlerClass(out))
}
}
def socket = WebSocket.accept[JsValue, JsValue] { request =>
ActorFlow.actorRef(out =>
HandlerClass.props(out) )
}
I want to know if someone uses my chat system as an Api, how can i return
the 'out' actor, so that he/she can have the control over different
connections through different actors. Actually , it does not seem possible
to return the 'out' actor here. I also wanted to know how the incoming
message can also be captured before going for the 'SocketHandlerClass'?
--
>>>>>>>>>> Read the docs: http://akka.io/docs/
>>>>>>>>>> Check the FAQ:
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
---
You received this message because you are subscribed to the Google Groups "Akka
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.