G
Gast
Gast
Moin,
Was bedeutet das notify() bei folgendem Code (notify heißt ja verständigen aber was wird verständigt bzw. wer und welche Auswirkungen hat das??)
schönes We,
Was bedeutet das notify() bei folgendem Code (notify heißt ja verständigen aber was wird verständigt bzw. wer und welche Auswirkungen hat das??)
Code:
private final List queue = new LinkedList();
public final void stop() {
synchronized(queue) {
stopped = true;
queue.notify(); // was wird da verständigt oder gemacht??
}
}
schönes We,