An Executor by nature of the specific interface is not something that needs to be shutdown. For instance, here is the most basic implementation of Executor.
class NearlyPointlessExecutor implements Executor {
public void execute(Runnable r) {
r.run();
}
}
Clearly in the code above, there is nothing so complicated that anything need be shutdown, yet the provided class adheres completely to the Executor interface.
If your implementation does need to be shutdown, then your options are either to make your own interface or implement ExecutorService.
Update for question edit:
In the case of the provided code, it would not be possible to shutdown the Threads being created because no reference to them is kept in a collection.
However, there is a solution, the implementation provided is essentially the same as the one provided by using: Executors.newCachedThreadPool. Discard your own implementation and use this one instead.