Package com.complexible.common.util.concurrent
package com.complexible.common.util.concurrent
-
ClassDescription
ThreadPoolExecutorwhich has a limited number of outstanding permits for executing tasks and when there are no more permits left,new taskswill block waiting for a permit to free up instead of throwing an exception.A very light-weight utility class to make it easier to run a set of tasks together and wait until all those jobs end.Executors utilsStardog executor service to provide the functionality of a ScheduledExecutorService without the cost of creating a new executor service every time the executor is needed.