Package thread.concurrencyCookbook.chapter4.recipe11

Examples of thread.concurrencyCookbook.chapter4.recipe11.ReportGenerator


   * @param args
   */
  public static void main(String[] args) {

    // Create a MyThreadGroup object
    MyThreadGroup threadGroup=new MyThreadGroup("MyThreadGroup");
    // Create a Taks object
    Task task=new Task();
    // Create and start two Thread objects for this Task
    for (int i=0; i<2; i++){
      Thread t=new Thread(threadGroup,task);
View Full Code Here


  public static void main(String[] args) {

    // Create a MyThreadGroup object
    MyThreadGroup threadGroup=new MyThreadGroup("MyThreadGroup");
    // Create a Taks object
    Task task=new Task();
    // Create and start two Thread objects for this Task
    for (int i=0; i<2; i++){
      Thread t=new Thread(threadGroup,task);
      t.start();
    }
View Full Code Here

    ReportRequest onlineRequest=new ReportRequest("Online", service);
    Thread faceThread=new Thread(faceRequest);
    Thread onlineThread=new Thread(onlineRequest);
   
    // Create a ReportSender object and a Thread to execute  it
    ReportProcessor processor=new ReportProcessor(service);
    Thread senderThread=new Thread(processor);
   
    // Start the Threads
    System.out.printf("Main: Starting the Threads\n");
    faceThread.start();
    onlineThread.start();
    senderThread.start();
   
    // Wait for the end of the ReportGenerator tasks
    try {
      System.out.printf("Main: Waiting for the report generators.\n");
      faceThread.join();
      onlineThread.join();
    } catch (InterruptedException e) {
      e.printStackTrace();
    }
   
    // Shutdown the executor
    System.out.printf("Main: Shuting down the executor.\n");
    executor.shutdown();
    try {
      executor.awaitTermination(1, TimeUnit.DAYS);
    } catch (InterruptedException e) {
      e.printStackTrace();
    }
    // End the execution of the ReportSender
    processor.setEnd(true);
    System.out.printf("Main: Ends\n");

  }
View Full Code Here

    // Create the executor and thee CompletionService using that executor
    ExecutorService executor=(ExecutorService)Executors.newCachedThreadPool();
    CompletionService<String> service=new ExecutorCompletionService<>(executor);

    // Crete two ReportRequest objects and two Threads to execute them
    ReportRequest faceRequest=new ReportRequest("Face", service);
    ReportRequest onlineRequest=new ReportRequest("Online", service);
    Thread faceThread=new Thread(faceRequest);
    Thread onlineThread=new Thread(onlineRequest);
   
    // Create a ReportSender object and a Thread to execute  it
    ReportProcessor processor=new ReportProcessor(service);
View Full Code Here

  public static void main(String[] args) throws Throwable {
   
    /*
     * Create a Test object
     */
    ProducerConsumerTest test=new ProducerConsumerTest();
   
    /*
     * Execute the test
     */
    System.out.printf("Main: Starting the test\n");
View Full Code Here

TOP

Related Classes of thread.concurrencyCookbook.chapter4.recipe11.ReportGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.