shut down open offer pool off ui thread to avoid blocking

This commit is contained in:
woodser 2024-02-19 12:31:26 -05:00
parent eaf096adeb
commit 23db847065

View File

@ -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() {