handle response from offer availibility check off thread

This commit is contained in:
woodser 2023-04-20 11:08:51 -04:00
parent 2b7a461411
commit 0c3761b172
2 changed files with 4 additions and 4 deletions

View File

@ -139,12 +139,12 @@ public class Offer implements NetworkPayload, PersistablePayload {
// Availability
///////////////////////////////////////////////////////////////////////////////////////////
public void checkOfferAvailability(OfferAvailabilityModel model, ResultHandler resultHandler,
public synchronized void checkOfferAvailability(OfferAvailabilityModel model, ResultHandler resultHandler,
ErrorMessageHandler errorMessageHandler) {
availabilityProtocol = new OfferAvailabilityProtocol(model,
() -> {
cancelAvailabilityRequest();
resultHandler.handleResult();
new Thread(() -> resultHandler.handleResult()).start();
},
(errorMessage) -> {
if (availabilityProtocol != null)

View File

@ -1161,7 +1161,7 @@ public abstract class Trade implements Tradable, Model {
public void onShutDownStarted() {
isShutDownStarted = true;
if (wallet != null) log.info("{} {} onShutDownStarted()", getClass().getSimpleName(), getId());
if (wallet != null) log.info("{} {} preparing for shut down", getClass().getSimpleName(), getId());
synchronized (this) {
synchronized (walletLock) {
stopPolling(); // allow locks to release before stopping
@ -1170,7 +1170,7 @@ public abstract class Trade implements Tradable, Model {
}
public void shutDown() {
if (wallet != null) log.info("{} {} onShutDown()", getClass().getSimpleName(), getId());
if (wallet != null) log.info("{} {} shutting down", getClass().getSimpleName(), getId());
synchronized (this) {
isInitialized = false;
isShutDown = true;