Re: [akka-user] How to get all the Actors that are holding a particular web socket endpoint using Play framework?

2017-04-25 Thread Akka Team
For more Play Framework specific answers I'd ask on the play mailing list instead. In general: If it has to be actors representing the websockets I'd let them register to a registry/broadcast actor that will keep a list of current web sockets (using watch to know if they terminate for example)

[akka-user] How to get all the Actors that are holding a particular web socket endpoint using Play framework?

2017-03-19 Thread kant kodali
Hi All, I have a message queue which doesn't have Actor concepts or anything so what I plan to do is that on the application startup I want to start the consumer which will then keep getting messages from the queue. Now, Play framework creates an Actor for every Web Socket Connection and I