Using a WebService with Akka Actors and the play framework
问题 I have built a web service using Play & Akka and now need to integrate another Webservice, where my web service is a client. My default controller (with an associated routes file) looks like class myController @Inject() (implicit val messagesApi: MessagesApi, config: play.api.Configuration) extends Controller with I18nSupport { // Actions } This spins up a large actor system and everything is good. One of the actors is defined as below - class ActorMgr ( jobId: Long, config: Config) extends