forked from daveyliam/mapwriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask.java
43 lines (34 loc) · 1009 Bytes
/
Task.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
package mapwriter;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
public abstract class Task implements Runnable {
// the task stores its own future
private Future<?> future = null;
// called by processTaskQueue after the thread completes
public abstract void onComplete();
// the method that runs in a separate thread
// must not access future in run()
public abstract void run();
// methods to access the tasks Future variable
public final Future<?> getFuture() {
return this.future;
}
public final void setFuture(Future<?> future) {
this.future = future;
}
public final boolean isDone() {
return (this.future != null) ? this.future.isDone() : false;
}
public final void printException() {
if (this.future != null) {
try {
this.future.get();
} catch (ExecutionException e) {
Throwable rootException = e.getCause();
rootException.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}