Using shutdown() method. Frame the concept in practical terms so you can explain it during interview discussion.
The `shutdown()` method of ExecutorService initiates an orderly shutdown where previously submitted tasks are executed, but no new tasks will be accepted. This is crucial in scenarios where you need to ensure all tasks complete before closing the application, like processing all orders before closing an e-commerce service.