All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jtrim2.executor.UnstoppableTaskExecutor Maven / Gradle / Ivy

There is a newer version: 2.0.7
Show newest version
package org.jtrim2.executor;

/**
 * @see TaskExecutors#asUnstoppableExecutor(TaskExecutorService)
 */
final class UnstoppableTaskExecutor extends DelegatedTaskExecutorService {
    public UnstoppableTaskExecutor(TaskExecutorService wrappedExecutor) {
        super(wrappedExecutor);
    }

    @Override
    public void shutdown() {
        throw new UnsupportedOperationException(
                "This executor cannot be shutted down.");
    }

    @Override
    public void shutdownAndCancel() {
        shutdown();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy