How to implement a (low priority) scheduled workstealing ExecutorService?

251 views Asked by At

My project requires two low priority tasks to be done regularly. Simple solution is to have a scheduled executor with the two tasks scheduled at fixed rate.

Now the problem is: there might be other tasks of higher priority. The obvious solution might be to go with workStealingPools. Though I can't find implementations of scheduled workstealing pools.

Is there a better/different approach for this, or is there a logical reason why this doesn't make sense? Or: how to implement such a solution?

0

There are 0 answers