Java单一线程执行器, 可以替代Timer

public class SingleExecutor {
    private ScheduledExecutorService executor = Executors
            .newSingleThreadScheduledExecutor();
    private CopyOnWriteArrayList<Future<?>> taskFutures = new CopyOnWriteArrayList<>();

    public SingleExecutor() {
    }

    public <T> Future<T> submit(Callable<T> callable) {
        Future<T> future = executor.submit(callable);
        taskFutures.add(future);
        return future;
    }

    public <T> ScheduledFuture<T> schedule(Callable<T> callable, long delay,
                                           TimeUnit unit) {
        ScheduledFuture<T> future = executor.schedule(callable, delay, unit);
        taskFutures.add(future);
        return future;
    }


    public boolean isShutdown() {
        return executor.isShutdown();
    }


    public boolean isTerminated() {
        return executor.isTerminated();
    }


    public void shutdown() {
        shutdownNow();
    }


    public List<Runnable> shutdownNow() {
        LogX.d("#shutdownNow");
        cancelAll();
        return executor.shutdownNow();

    }

    public void cancelAll() {
        for (Future<?> future : taskFutures) {
            if (future != null && !future.isDone() && !future.isCancelled()) {
                future.cancel(true);
                taskFutures.remove(future);
            }
        }
    }


    public Future<?> submit(Runnable task) {
        Future<?> future = executor.submit(task);
        taskFutures.add(future);
        return future;
    }


    public <T> Future<T> submit(Runnable task, T result) {
        Future<T> future = executor.submit(task, result);
        taskFutures.add(future);
        return future;
    }


    public void execute(Runnable command) {
        executor.execute(command);
    }

    public ScheduledFuture<?> schedule(Runnable command, long delay,
                                       TimeUnit unit) {
        ScheduledFuture<?> future = executor.schedule(command, delay, unit);
        taskFutures.add(future);
        return future;
    }


    public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) {
        ScheduledFuture<?> future = executor.scheduleAtFixedRate(command, initialDelay, period, unit);
        taskFutures.add(future);
        return future;
    }


    public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,
                                                     long initialDelay, long delay, TimeUnit unit) {
        ScheduledFuture<?> future = executor.scheduleWithFixedDelay(command, initialDelay, delay,
                unit);
        taskFutures.add(future);
        return future;
    }


    @Override
    protected void finalize() throws Throwable {
        super.finalize();
        shutdownNow();
        executor = null;
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值