mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-17 14:05:23 +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();
|
throw new InterruptedException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public synchronized void done() {
|
public void done() {
|
||||||
isComplete = true;
|
synchronized (this) {
|
||||||
notifyAll();
|
isComplete = true;
|
||||||
|
notifyAll();
|
||||||
|
}
|
||||||
notifyListeners(phaseNumber);
|
notifyListeners(phaseNumber);
|
||||||
}
|
}
|
||||||
public synchronized void cancel() {
|
public synchronized void cancel() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue