Advertisement
Guest User

application.conf

a guest
Jun 19th, 2013
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. //application.conf in src/main/resources
  2. akka {
  3. actor {
  4. my-pinned-dispatcher {
  5. executor = "thread-pool-executor"
  6. type = PinnedDispatcher
  7. }
  8.  
  9. my-dispatcher {
  10. type = Dispatcher
  11.  
  12. executor = "fork-join-executor"
  13.  
  14. fork-join-executor {
  15. parallelism-min = 2
  16.  
  17. parallelism-factor = 2.0
  18.  
  19. parallelism-max = 10
  20. }
  21.  
  22. throughput = 100
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement