-
Enhancement
-
Resolution: Fixed
-
P4
-
8u40
The fix for RT-38289 added a new runWithoutRenderLock static utility method in QuantumToolkit that takes a Supplier (lambda) and checks whether the renderlock is held; if it is, it releases it prior to calling the supplier and reacquires it afterwords. There is one more place where this method could be used.
Additionally, the following pattern appears in several places:
lock
try {
code that runs with the lock held
} finally {
release lock
}
I propose to add a new runWithRenderLock method to centralize the code that actually handles the lock.
Additionally, the following pattern appears in several places:
lock
try {
code that runs with the lock held
} finally {
release lock
}
I propose to add a new runWithRenderLock method to centralize the code that actually handles the lock.
- is blocked by
-
JDK-8093147 [Quantum] Control ActionEvent is fired on Stage closing and the App hangs if modal window is then shown
- Resolved