开发者

How to effectively cancel periodic ScheduledExecutorService task

开发者 https://www.devze.com 2023-02-16 00:37 出处:网络
So, using this link as a reference, can anyone suggest a more elegant solution for canceling a periodic ScheduledExecutorService task?

So, using this link as a reference, can anyone suggest a more elegant solution for canceling a periodic ScheduledExecutorService task?

Here's an example of what I'm currently doing:

// do stuff

// Schedule periodic task
currentTask = exec.scheduleAtFixedRate(
                            new RequestProgressRunnable(),
                            0, 
                            5000,
                            TimeUnit.MILLISECONDS);

// Runnable
private class RequestProgressRunnable implements Runnable
{
        // Field members
        private Integer progressValue = 0;

        @Override
        public void run()
        {
            // do stuff

            // Check progress value
            if (progressValue == 100)
            {
                // Cancel task
                getFuture().cancel(true);
            }
            else
            {
                // Increment progress value
                progressValue += 10;
            }
        }
  开发者_JAVA技巧  }

    /**
     * Gets the future object of the scheduled task
     * @return Future object
     */
    public Future<?> getFuture()
    {
        return currentTask;
    }


I suggest you use int and schedule the task yourself.

executor.schedule(new RequestProgressRunnable(), 5000, TimeUnit.MILLISECONDS);

class RequestProgressRunnable implements Runnable {
    private int count = 0;
    public void run() {
        // do stuff

        // Increment progress value
        progressValue += 10;

        // Check progress value
        if (progressValue < 100)
            executor.schedule(this, 5000, TimeUnit.MILLISECONDS);
    }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消