[akka-user][deprecated] Re: Correlation of ThreadPool Executor task-queue-size with Inbox of Actors?

2018-10-03 Thread sandhusolr
Bit of an update: I have an unbounded queue on my thread-pool-executor so this means it can process request up-till INT_MAX request on the queue. Still unclear on when does a message in a queue for the actor becomes a task in the thread pool queue. On Wednesday, October 3, 2018 at 12:38:23 AM

[akka-user][deprecated] Correlation of ThreadPool Executor task-queue-size with Inbox of Actors?

2018-10-03 Thread sandhusolr
Hi, I am working on an application where I am using the thread-pool-executor. I read the documentation on the parameters for the Threadpool executor and I want to know what is the correlation of task-queue-size to message inbox of Actors. When does a message in the inbox become a task? I am