⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 threadgate.java

📁 java concurrency in practice 源码. JAVA并发设计
💻 JAVA
字号:
package net.jcip.examples;import net.jcip.annotations.*;/** * ThreadGate * <p/> * Recloseable gate using wait and notifyAll * * @author Brian Goetz and Tim Peierls */@ThreadSafepublic class ThreadGate {    // CONDITION-PREDICATE: opened-since(n) (isOpen || generation>n)    @GuardedBy("this") private boolean isOpen;    @GuardedBy("this") private int generation;    public synchronized void close() {        isOpen = false;    }    public synchronized void open() {        ++generation;        isOpen = true;        notifyAll();    }    // BLOCKS-UNTIL: opened-since(generation on entry)    public synchronized void await() throws InterruptedException {        int arrivalGeneration = generation;        while (!isOpen && arrivalGeneration == generation)            wait();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -