-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathLooper.java
47 lines (39 loc) · 1.28 KB
/
Looper.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
* @author: Damir Ljubic
* @email: [email protected]
* <p>All rights reserved!
*/
package <your own package>;
import org.jetbrains.annotations.NotNull;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
public final class Looper {
// Thread-safe tasks queue
private final BlockingQueue<Runnable> queue = new LinkedBlockingQueue<>();
private static final Runnable STOPPING_TASK = () -> {};
/** For stopping the Looper */
public void stop() throws InterruptedException {
queue.put(STOPPING_TASK); // to unblock the queue and terminate gracefully
}
/** Looper drains the queue, and executes the tasks in order of reception (FIFO) */
private final Runnable looper =
() -> {
for (; ;) {
try {
Runnable task = queue.take(); // blocking call
if (task == STOPPING_TASK) break;
task.run();
} catch (InterruptedException e) {
Thread.currentThread().interrupt(); // set the interrupt flag to "true"
}
}
System.out.println("<Exit> Looper"); // your own logging
};
@NotNull
public Runnable getLooper() {
return looper;
}
public void submit(@NotNull Runnable task) throws InterruptedException {
queue.put(task);
}
}