On Tuesday, July 5, 2016 at 7:12:03 AM UTC-7, ani...@egnaroinc.com wrote:
>
> 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 akka-user+unsubscr...@googlegroups.com.
To post to this group, send email to akka-user@googlegroups.com.
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to