Questions tagged [akka-dispatcher]

18 questions
0
votes
1 answer

Blocking Operation in Actor NOT Occupying All Default Dispatchers

I am learning Akka Actor recently. I read the document of dispatchers in Actor. I am curious about the blocking operation in an actor. The last topic in the document describes how to solve the problem. And I am trying to reproduce the example…
jiexray
  • 325
  • 4
  • 13
0
votes
1 answer

Using Akka Dispatchers for Handling Futures

I have a Spray based HTTP Service. I have a stream that runs inside this HTTP application. Now since this stream does a lot of I/O, I decided to use a separate thread pool. I looked up the Akka documentation to see what I could do so that my thread…
joesan
  • 13,963
  • 27
  • 95
  • 232
-2
votes
1 answer

How to create BalancingDispatcher using Akka in Java?

I want to scale my application UP and DOWN depending on no of requests from users for this i want to share the same mailbox with all the presently running actors. I think Balancing Dispatcher will solve my problem as per his work stealing algorithm.…
Ajinkya
  • 125
  • 7
1
2