Get count of number of running async jobs

To know the jobs that are currently picked for execution or are being executed, you can call #getThreadPoolQueue() on the async executor. This is the BlockingQueue that backs the ExecutorService used by the async executor. On the Blockinqueue, you can then call for example #getRemainingCapacity() to know how full the queue currently is.