Producer & Consumer producer and consumer

Source: Internet
Author: User
//Meal.javapackage producer.consumer.demo;public class Meal {    private final int orderNum;    public Meal(int orderNum) {this.orderNum = orderNum;    }    public String toString() {return "Meal " + orderNum;    }}//Chef.javapackage producer.consumer.demo;import java.util.concurrent.TimeUnit;public class Chef implements Runnable{    private Restaurant restaurant;    private int count = 0;    public Chef(Restaurant r) {restaurant = r;    }    public void run() {try {    while (!Thread.interrupted()) {synchronized (this) {    while (restaurant.meal != null)wait(); // ... for the meal to be taken}if (++count == 10) {    System.out.println("Out of food, closing");    restaurant.exec.shutdownNow();}System.out.println("Order up! ");synchronized (restaurant.waitPerson) {    restaurant.meal = new Meal(count);    restaurant.waitPerson.notifyAll();}TimeUnit.MILLISECONDS.sleep(100);    }} catch (InterruptedException e) {    System.out.println("Chef interrupted");}    }}//WaitPerson.javapackage producer.consumer.demo;public class WaitPerson implements Runnable{    private Restaurant restaurant;    public WaitPerson(Restaurant r) {restaurant = r;    }    public void run() {try {    while (!Thread.interrupted()) {synchronized (this) {    while (restaurant.meal == null)wait(); // ... for the chef to produce a meal}System.out.println("Waitperson got " + restaurant.meal);synchronized (restaurant.chef) {    restaurant.meal = null;    restaurant.chef.notifyAll(); // Ready for another}    }} catch (InterruptedException e) {    System.out.println("WaitPerson interrupted");}    }}//Restaurant.javapackage producer.consumer.demo;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;public class Restaurant {    Meal meal;    ExecutorService exec = Executors.newCachedThreadPool();    WaitPerson waitPerson = new WaitPerson(this);    Chef chef = new Chef(this);    public Restaurant() {exec.execute(chef);exec.execute(waitPerson);    }    public static void main(String[] args) {new Restaurant();    }}

  

From: Thinking in Java.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.