Executes a void task in the thread pool.
Example:
var pool = WorkerPool.withDefault (); pool.execute (() => { print ("running in background\n"); });
the task to execute.