mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 15:45:25 +02:00
[197167][persistence][api] Need callback API to know when RSE model is fully restored
https://bugs.eclipse.org/bugs/show_bug.cgi?id=197167
This commit is contained in:
parent
e093238cd6
commit
f8c2e54e84
1 changed files with 5 additions and 3 deletions
|
@ -62,9 +62,11 @@ public final class RSEInitJob extends Job {
|
|||
throw new InterruptedException();
|
||||
}
|
||||
}
|
||||
public synchronized void done() {
|
||||
isComplete = true;
|
||||
notifyAll();
|
||||
public void done() {
|
||||
synchronized (this) {
|
||||
isComplete = true;
|
||||
notifyAll();
|
||||
}
|
||||
notifyListeners(phaseNumber);
|
||||
}
|
||||
public synchronized void cancel() {
|
||||
|
|
Loading…
Add table
Reference in a new issue