ExecutorService executor = Executors.newFixedThreadPool(10); // submit some tasks to the executor executor.submit(new MyTask()); executor.submit(new MyTask()); executor.submit(new MyTask()); executor.submit(new MyTask()); executor.submit(new MyTask()); // initiate a shutdown process executor.shutdown();In the above code, we created an ExecutorService with a fixed thread pool of size 10 and submitted five tasks to it. Then, we initiated an orderly shutdown process by calling the `shutdown()` method. This code example belongs to the `java.util.concurrent` package library, which provides implementations of various high-performance concurrent data structures and utilities.