sync notifications to FX thread only in desktop app (#60)
daemon starting and stopping without exceptions
This commit is contained in:
parent
fcdc627d00
commit
55f62f92dd
@ -15,8 +15,6 @@ import javax.inject.Inject;
|
||||
|
||||
import com.google.common.util.concurrent.FutureCallback;
|
||||
|
||||
import javafx.application.Platform;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
import java.math.BigInteger;
|
||||
@ -81,13 +79,9 @@ public class XmrWalletService {
|
||||
|
||||
@Override
|
||||
public void onBalancesChanged(BigInteger newBalance, BigInteger newUnlockedBalance) {
|
||||
Platform.runLater(new Runnable() { // jni wallet runs on separate thread which cannot update fx
|
||||
@Override public void run() {
|
||||
notifyBalanceListeners();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@ -324,10 +318,10 @@ public class XmrWalletService {
|
||||
threads.add(new Thread(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
System.out.println("XmrWalletServie.shutDown() closing wallet within thread!!!");
|
||||
System.out.println("Wallet balance: " + wallet.getBalance());
|
||||
try { walletsSetup.getWalletConfig().closeWallet(openWallet); }
|
||||
catch (Exception e) { e.printStackTrace(); }
|
||||
catch (Exception e) {
|
||||
e.printStackTrace(); // exception expected on shutdown when run as daemon TODO (woodser): detect if running as daemon
|
||||
}
|
||||
}
|
||||
}));
|
||||
}
|
||||
@ -415,47 +409,27 @@ public class XmrWalletService {
|
||||
|
||||
@Override
|
||||
public void onSyncProgress(long height, long startHeight, long endHeight, double percentDone, String message) {
|
||||
Platform.runLater(new Runnable() { // jni wallet runs on separate thread which cannot update fx
|
||||
@Override public void run() {
|
||||
listener.onSyncProgress(height, startHeight, endHeight, percentDone, message);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onNewBlock(long height) {
|
||||
Platform.runLater(new Runnable() { // jni wallet runs on separate thread which cannot update fx
|
||||
@Override public void run() {
|
||||
listener.onNewBlock(height);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onBalancesChanged(BigInteger newBalance, BigInteger newUnlockedBalance) {
|
||||
Platform.runLater(new Runnable() { // jni wallet runs on separate thread which cannot update fx
|
||||
@Override public void run() {
|
||||
listener.onBalancesChanged(newBalance, newUnlockedBalance);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onOutputReceived(MoneroOutputWallet output) {
|
||||
Platform.runLater(new Runnable() { // jni wallet runs on separate thread which cannot update fx
|
||||
@Override public void run() {
|
||||
listener.onOutputReceived(output);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onOutputSpent(MoneroOutputWallet output) {
|
||||
Platform.runLater(new Runnable() { // jni wallet runs on separate thread which cannot update fx
|
||||
@Override public void run() {
|
||||
listener.onOutputSpent(output);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -29,6 +29,8 @@ import org.fxmisc.easybind.EasyBind;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
import javafx.application.Platform;
|
||||
|
||||
@Slf4j
|
||||
public class BuyerSubView extends TradeSubView {
|
||||
private TradeWizardItem step1;
|
||||
@ -74,6 +76,8 @@ public class BuyerSubView extends TradeSubView {
|
||||
protected void onViewStateChanged(PendingTradesViewModel.State viewState) {
|
||||
super.onViewStateChanged(viewState);
|
||||
|
||||
Platform.runLater(new Runnable() {
|
||||
@Override public void run() {
|
||||
if (viewState != null) {
|
||||
PendingTradesViewModel.BuyerState buyerState = (PendingTradesViewModel.BuyerState) viewState;
|
||||
|
||||
@ -109,6 +113,8 @@ public class BuyerSubView extends TradeSubView {
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -93,7 +93,7 @@ import javafx.geometry.Pos;
|
||||
|
||||
import org.fxmisc.easybind.EasyBind;
|
||||
import org.fxmisc.easybind.Subscription;
|
||||
|
||||
import javafx.application.Platform;
|
||||
import javafx.beans.binding.Bindings;
|
||||
import javafx.beans.property.ReadOnlyObjectWrapper;
|
||||
import javafx.beans.value.ChangeListener;
|
||||
@ -618,7 +618,11 @@ public class PendingTradesView extends ActivatableViewAndModel<VBox, PendingTrad
|
||||
|
||||
if (item != null && !empty) {
|
||||
trade = item.getTrade();
|
||||
listener = (observable, oldValue, newValue) -> update();
|
||||
listener = (observable, oldValue, newValue) -> Platform.runLater(new Runnable() {
|
||||
@Override public void run() {
|
||||
update();
|
||||
}
|
||||
});
|
||||
trade.stateProperty().addListener(listener);
|
||||
update();
|
||||
} else {
|
||||
@ -932,7 +936,11 @@ public class PendingTradesView extends ActivatableViewAndModel<VBox, PendingTrad
|
||||
super.updateItem(newItem, empty);
|
||||
if (!empty && newItem != null) {
|
||||
trade = newItem.getTrade();
|
||||
listener = (observable, oldValue, newValue) -> update();
|
||||
listener = (observable, oldValue, newValue) -> Platform.runLater(new Runnable() {
|
||||
@Override public void run() {
|
||||
update();
|
||||
}
|
||||
});
|
||||
trade.stateProperty().addListener(listener);
|
||||
update();
|
||||
} else {
|
||||
|
@ -29,6 +29,8 @@ import org.fxmisc.easybind.EasyBind;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
import javafx.application.Platform;
|
||||
|
||||
@Slf4j
|
||||
public class SellerSubView extends TradeSubView {
|
||||
private TradeWizardItem step1;
|
||||
@ -74,6 +76,8 @@ public class SellerSubView extends TradeSubView {
|
||||
protected void onViewStateChanged(PendingTradesViewModel.State viewState) {
|
||||
super.onViewStateChanged(viewState);
|
||||
|
||||
Platform.runLater(new Runnable() {
|
||||
@Override public void run() {
|
||||
if (viewState != null) {
|
||||
PendingTradesViewModel.SellerState sellerState = (PendingTradesViewModel.SellerState) viewState;
|
||||
|
||||
@ -109,6 +113,8 @@ public class SellerSubView extends TradeSubView {
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user