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

com.alibaba.mtc.threadpool.ExecutorServiceMtcWrapper Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.alibaba.mtc.threadpool;

import com.alibaba.mtc.MtContextCallable;
import com.alibaba.mtc.MtContextRunnable;

import java.util.Collection;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;

/**
 * {@link com.alibaba.mtc.MtContextThreadLocal} Wrapper of {@link ExecutorService},
 * transmit the {@link com.alibaba.mtc.MtContextThreadLocal} from the task submit time of {@link Runnable} or {@link Callable}
 * to the execution time of {@link Runnable} or {@link Callable}.
 *
 * @author ding.lid
 * @since 0.9.0
 */
class ExecutorServiceMtcWrapper extends ExecutorMtcWrapper implements ExecutorService {
    final ExecutorService executorService;

    public ExecutorServiceMtcWrapper(ExecutorService executorService) {
        super(executorService);
        this.executorService = executorService;
    }

    @Override
    public void shutdown() {
        executorService.shutdown();
    }

    @Override
    public List shutdownNow() {
        return executorService.shutdownNow();
    }

    @Override
    public boolean isShutdown() {
        return executorService.isShutdown();
    }

    @Override
    public boolean isTerminated() {
        return executorService.isTerminated();
    }

    @Override
    public boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException {
        return executorService.awaitTermination(timeout, unit);
    }

    @Override
    public  Future submit(Callable task) {
        return executorService.submit(MtContextCallable.get(task));
    }

    @Override
    public  Future submit(Runnable task, T result) {
        return executorService.submit(MtContextRunnable.get(task), result);
    }

    @Override
    public Future submit(Runnable task) {
        return executorService.submit(MtContextRunnable.get(task));
    }

    @Override
    public  List> invokeAll(Collection> tasks) throws InterruptedException {
        return executorService.invokeAll(MtContextCallable.gets(tasks));
    }

    @Override
    public  List> invokeAll(Collection> tasks, long timeout, TimeUnit unit) throws InterruptedException {
        return executorService.invokeAll(MtContextCallable.gets(tasks), timeout, unit);
    }

    @Override
    public  T invokeAny(Collection> tasks) throws InterruptedException, ExecutionException {
        return executorService.invokeAny(MtContextCallable.gets(tasks));
    }

    @Override
    public  T invokeAny(Collection> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
        return executorService.invokeAny(MtContextCallable.gets(tasks), timeout, unit);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy