mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
shut down open offer pool off ui thread to avoid blocking
This commit is contained in:
parent
eaf096adeb
commit
23db847065
@ -351,17 +351,19 @@ public class OpenOfferManager implements PeerManager.Listener, DecryptedDirectMe
|
||||
// For typical number of offers we are tolerant with delay to give enough time to broadcast.
|
||||
// If number of offers is very high we limit to 3 sec. to not delay other shutdown routines.
|
||||
long delayMs = Math.min(3000, size * 200 + 500);
|
||||
GenUtils.waitFor(delayMs);;
|
||||
GenUtils.waitFor(delayMs);
|
||||
}, THREAD_ID);
|
||||
} else {
|
||||
broadcaster.flush();
|
||||
}
|
||||
|
||||
// shut down thread pool
|
||||
shutDownThreadPool();
|
||||
|
||||
// invoke completion handler
|
||||
if (completeHandler != null) completeHandler.run();
|
||||
// shut down thread pool off main thread
|
||||
ThreadUtils.submitToPool(() -> {
|
||||
shutDownThreadPool();
|
||||
|
||||
// invoke completion handler
|
||||
if (completeHandler != null) completeHandler.run();
|
||||
});
|
||||
}
|
||||
|
||||
private void shutDownThreadPool() {
|
||||
|
Loading…
Reference in New Issue
Block a user