zoukankan      html  css  js  c++  java
  • Java Concurrency

    When you work with an executor, you don't have to manage threads. You only implement the Runnable or Callable tasks and send them to the executor. It's the executor that's responsible for creating threads, managing them in a thread pool, and finishing them if they are not needed. Sometimes, you may want to cancel a task that you sent to the executor. In that case, you can use the cancel() method of Future that allows you to make that cancellation operation. In this recipe, you will learn how to use this method to cancel the tasks that you have sent to an executor.

    /**
     * This class implements the task of the example. It simply writes a message
     * to the console every 100 milliseconds 
     */
    public class Task implements Callable<String> {
    
        /**
         * Main method of the task. It has an infinite loop that writes a message to
         * the console every 100 milliseconds
         */
        @Override
        public String call() throws Exception {
            while (true){
                System.out.printf("Task: Test
    ");
                Thread.sleep(100);
            }
        }
    }
    
    
    
    /**
     * Main class of the example. Execute a task trough an executor, waits
     * 2 seconds and then cancel the task.
     */
    public class Main {
    
        public static void main(String[] args) {
    
            // Create an executor
            ThreadPoolExecutor executor = (ThreadPoolExecutor) Executors.newCachedThreadPool();
    
            // Create a task
            Task task = new Task();
    
            System.out.printf("Main: Executing the Task
    ");
    
            // Send the task to the executor
            Future<String> result = executor.submit(task);
    
            // Sleep during two seconds
            try {
                TimeUnit.SECONDS.sleep(2);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
    
            // Cancel the task, finishing its execution
            System.out.printf("Main: Cancelling the Task
    ");
            result.cancel(true);
            // Verify that the task has been cancelled
            System.out.printf("Main: Cancelled: %s
    ", result.isCancelled());
            System.out.printf("Main: Done: %s
    ", result.isDone());
    
            // Shutdown the executor
            executor.shutdown();
            System.out.printf("Main: The executor has finished
    ");
        }
    }

    You use the cancel() method of the Future interface when you want to cancel a task that you have sent to an executor. Depending on the parameter of the cancel() method and the status of the task, the behavior of this method is different:

    • If the task has finished or has been canceled earlier or it can't be canceled for other reasons, the method will return the false value and the task won't be canceled.
    • If the task is waiting in the executor to get a Thread object that will execute it, the task is canceled and never begins its execution. If the task is already running, it depends on the parameter of the method. The cancel() method receives a Boolean value as a parameter. If the value of that parameter is true and the task is running, it will be canceled. If the value of the parameter is false and the task is running, it won't be canceled.

    The following snippet shows the output of an execution of this example:

    Main: Executing the Task
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Task: Test
    Main: Cancelling the Task
    Main: Cancelled: true
    Main: Done: true
    Main: The executor has finished
  • 相关阅读:
    浅浅地聊一下矩阵与线性映射及矩阵的特征值与特征向量
    再谈正态分布或高斯函数
    喜好:
    Deep Residual Learning for Image Recognition这篇文章
    Java并发编程:volatile关键字解析
    mysql decimal(10,2)对应java类型
    各个JSON技术的比较(Jackson,Gson,Fastjson)的对比
    @RequestBody和@RequestParam区别
    Java中的ReentrantLock和synchronized两种锁定机制的对比
    使用Solr索引MySQL数据
  • 原文地址:https://www.cnblogs.com/huey/p/6040286.html
Copyright © 2011-2022 走看看