mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
remove offers from books off user thread
This commit is contained in:
parent
41290a1f3f
commit
33bd4587c4
@ -317,14 +317,20 @@ public class OpenOfferManager implements PeerManager.Listener, DecryptedDirectMe
|
||||
int size = openOffers.size();
|
||||
log.info("Remove open offers at shutDown. Number of open offers: {}", size);
|
||||
if (offerBookService.isBootstrapped() && size > 0) {
|
||||
ThreadUtils.execute(() -> { // finish tasks
|
||||
UserThread.execute(() -> {
|
||||
openOffers.forEach(openOffer -> offerBookService.removeOfferAtShutDown(openOffer.getOffer().getOfferPayload()));
|
||||
ThreadUtils.execute(() -> {
|
||||
|
||||
// remove offers from offer book
|
||||
synchronized (openOffers) {
|
||||
openOffers.forEach(openOffer -> {
|
||||
if (openOffer.getState() == OpenOffer.State.AVAILABLE) {
|
||||
offerBookService.removeOfferAtShutDown(openOffer.getOffer().getOfferPayload());
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Force broadcaster to send out immediately, otherwise we could have a 2 sec delay until the
|
||||
// bundled messages sent out.
|
||||
broadcaster.flush();
|
||||
shutDownThreadPool();
|
||||
|
||||
if (completeHandler != null) {
|
||||
// For typical number of offers we are tolerant with delay to give enough time to broadcast.
|
||||
@ -332,14 +338,13 @@ public class OpenOfferManager implements PeerManager.Listener, DecryptedDirectMe
|
||||
int delay = Math.min(3000, size * 200 + 500);
|
||||
UserThread.runAfter(completeHandler, delay, TimeUnit.MILLISECONDS);
|
||||
}
|
||||
});
|
||||
}, THREAD_ID);
|
||||
} else {
|
||||
broadcaster.flush();
|
||||
shutDownThreadPool();
|
||||
if (completeHandler != null)
|
||||
completeHandler.run();
|
||||
}
|
||||
shutDownThreadPool();
|
||||
}
|
||||
|
||||
private void shutDownThreadPool() {
|
||||
|
Loading…
Reference in New Issue
Block a user