Package com.packtpub.java7.concurrency.chapter2.recipe3.task

Examples of com.packtpub.java7.concurrency.chapter2.recipe3.task.Job


   * Main method of the example
   * @param args
   */
  public static void main (String args[]){
    // Creates the print queue
    PrintQueue printQueue=new PrintQueue();
   
    // Cretes ten jobs and the Threads to run them
    Thread thread[]=new Thread[10];
    for (int i=0; i<10; i++){
      thread[i]=new Thread(new Job(printQueue),"Thread "+i);
View Full Code Here


    FileMock mock=new FileMock(101, 10);
   
    /**
     * Creates a buffer with a maximum of 20 lines
     */
    Buffer buffer=new Buffer(20);
   
    /**
     * Creates a producer and a thread to run it
     */
    Producer producer=new Producer(mock, buffer);
View Full Code Here

    Thread threadProducer=new Thread(producer,"Producer");
   
    /**
     * Creates three consumers and threads to run them
     */
    Consumer consumers[]=new Consumer[3];
    Thread threadConsumers[]=new Thread[3];
   
    for (int i=0; i<3; i++){
      consumers[i]=new Consumer(buffer);
      threadConsumers[i]=new Thread(consumers[i],"Consumer "+i);
    }
   
    /**
     * Strats the producer and the consumers
View Full Code Here

    Buffer buffer=new Buffer(20);
   
    /**
     * Creates a producer and a thread to run it
     */
    Producer producer=new Producer(mock, buffer);
    Thread threadProducer=new Thread(producer,"Producer");
   
    /**
     * Creates three consumers and threads to run them
     */
 
View Full Code Here

   */
  public static void main(String[] args) {
    /**
     * Creates a simulated file with 100 lines
     */
    FileMock mock=new FileMock(101, 10);
   
    /**
     * Creates a buffer with a maximum of 20 lines
     */
    Buffer buffer=new Buffer(20);
View Full Code Here

    PrintQueue printQueue=new PrintQueue();
   
    // Creates ten Threads
    Thread thread[]=new Thread[10];
    for (int i=0; i<10; i++){
      thread[i]=new Thread(new Job(printQueue),"Thread "+i);
    }
   
    // Starts the Threads
    for (int i=0; i<10; i++){
      thread[i].start();
View Full Code Here

   * send documents to the print queue at the same time.
   */
  public static void main (String args[]){
   
    // Creates the print queue
    PrintQueue printQueue=new PrintQueue();
   
    // Creates ten Threads
    Thread thread[]=new Thread[10];
    for (int i=0; i<10; i++){
      thread[i]=new Thread(new Job(printQueue),"Thread "+i);
View Full Code Here

    PrintQueue printQueue=new PrintQueue();
   
    // Creates ten Threads
    Thread thread[]=new Thread[12];
    for (int i=0; i<12; i++){
      thread[i]=new Thread(new Job(printQueue),"Thread "+i);
    }
   
    // Starts the Threads
    for (int i=0; i<12; i++){
      thread[i].start();
View Full Code Here

    Thread threadConference=new Thread(conference);
    threadConference.start();
   
    // Creates ten participants, a thread for each one and starts them
    for (int i=0; i<10; i++){
      Participant p=new Participant(conference, "Participant "+i);
      Thread t=new Thread(p);
      t.start();
    }

  }
View Full Code Here

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

    // Creates a VideoConference with 10 participants.
    Videoconference conference=new Videoconference(10);
    // Creates a thread to run the VideoConference and start it.
    Thread threadConference=new Thread(conference);
    threadConference.start();
   
    // Creates ten participants, a thread for each one and starts them
View Full Code Here

TOP

Related Classes of com.packtpub.java7.concurrency.chapter2.recipe3.task.Job

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.