Concurrencia de Java - Interfaz de condición
Una interfaz java.util.concurrent.locks.Condition proporciona una capacidad de subproceso para suspender su ejecución, hasta que la condición dada sea verdadera. Un objeto Condition está necesariamente vinculado a un Lock y debe obtenerse mediante el método newCondition ().
Métodos de condición
A continuación se muestra la lista de métodos importantes disponibles en la clase Condition.
No Señor. | Método y descripción |
---|---|
1 | public void await() Hace que el hilo actual espere hasta que sea señalado o interrumpido. |
2 | public boolean await(long time, TimeUnit unit) Hace que el hilo actual espere hasta que se señalice o se interrumpa, o hasta que transcurra el tiempo de espera especificado. |
3 | public long awaitNanos(long nanosTimeout) Hace que el hilo actual espere hasta que se señalice o se interrumpa, o hasta que transcurra el tiempo de espera especificado. |
4 | public long awaitUninterruptibly() Hace que el hilo actual espere hasta que se señale. |
5 | public long awaitUntil() Hace que el hilo actual espere hasta que sea señalado o interrumpido, o hasta que transcurra el plazo especificado. |
6 | public void signal() Despierta un hilo en espera. |
7 | public void signalAll() Despierta todos los hilos en espera. |
Ejemplo
El siguiente programa TestThread demuestra estos métodos de la interfaz Condition. Aquí hemos usado signal () para notificar y await () para suspender el hilo.import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
public class TestThread {
public static void main(String[] args) throws InterruptedException {
ItemQueue itemQueue = new ItemQueue(10);
//Create a producer and a consumer.
Thread producer = new Producer(itemQueue);
Thread consumer = new Consumer(itemQueue);
//Start both threads.
producer.start();
consumer.start();
//Wait for both threads to terminate.
producer.join();
consumer.join();
}
static class ItemQueue {
private Object[] items = null;
private int current = 0;
private int placeIndex = 0;
private int removeIndex = 0;
private final Lock lock;
private final Condition isEmpty;
private final Condition isFull;
public ItemQueue(int capacity) {
this.items = new Object[capacity];
lock = new ReentrantLock();
isEmpty = lock.newCondition();
isFull = lock.newCondition();
}
public void add(Object item) throws InterruptedException {
lock.lock();
while(current >= items.length)
isFull.await();
items[placeIndex] = item;
placeIndex = (placeIndex + 1) % items.length;
++current;
//Notify the consumer that there is data available.
isEmpty.signal();
lock.unlock();
}
public Object remove() throws InterruptedException {
Object item = null;
lock.lock();
while(current <= 0) {
isEmpty.await();
}
item = items[removeIndex];
removeIndex = (removeIndex + 1) % items.length;
--current;
//Notify the producer that there is space available.
isFull.signal();
lock.unlock();
return item;
}
public boolean isEmpty() {
return (items.length == 0);
}
}
static class Producer extends Thread {
private final ItemQueue queue;
public Producer(ItemQueue queue) {
this.queue = queue;
}
@Override
public void run() {
String[] numbers =
{"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"};
try {
for(String number: numbers) {
System.out.println("[Producer]: " + number);
}
queue.add(null);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
}
}
static class Consumer extends Thread {
private final ItemQueue queue;
public Consumer(ItemQueue queue) {
this.queue = queue;
}
@Override
public void run() {
try {
do {
Object number = queue.remove();
System.out.println("[Consumer]: " + number);
if(number == null) {
return;
}
} while(!queue.isEmpty());
} catch (InterruptedException ex) {
ex.printStackTrace();
}
}
}
}
Esto producirá el siguiente resultado.
Salida
[Producer]: 1
[Producer]: 2
[Producer]: 3
[Producer]: 4
[Producer]: 5
[Producer]: 6
[Producer]: 7
[Producer]: 8
[Producer]: 9
[Producer]: 10
[Producer]: 11
[Producer]: 12
[Consumer]: null