blob: f1a19de9458065bf5f4fc4cea7cf3394e138d485 (
plain)
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
48
49
50
51
52
53
|
package com.keuin.kbackupfabric.operation.abstracts;
public abstract class AbstractAsyncOperation extends AbstractSerializedOperation {
private final Thread thread;
private final String name;
private final Object sync = new Object();
protected AbstractAsyncOperation(String name) {
this.name = name;
this.thread = new Thread(this::async, name);
}
/**
* Start the worker thread.
*
* @return true if succeed starting, false if already started.
*/
@Override
protected final boolean operate() {
synchronized (sync) {
if (thread.isAlive())
return false;
if (!sync())
return false;
thread.start();
return true;
}
}
/**
* Implement your async operation here.
* When this method returns, the operation must finish.
*/
protected abstract void async();
/**
* If necessary, implement your sync operations here.
* It will be invoked before starting the async thread.
*/
protected boolean sync() {
return true;
}
public final String getName() {
return name;
}
@Override
public String toString() {
return "operation " + name;
}
}
|