当前位置: 首页>>代码示例>>Java>>正文


Java TorClient.addInitializationListener方法代码示例

本文整理汇总了Java中com.subgraph.orchid.TorClient.addInitializationListener方法的典型用法代码示例。如果您正苦于以下问题:Java TorClient.addInitializationListener方法的具体用法?Java TorClient.addInitializationListener怎么用?Java TorClient.addInitializationListener使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.subgraph.orchid.TorClient的用法示例。


在下文中一共展示了TorClient.addInitializationListener方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onBitcoinSetup

import com.subgraph.orchid.TorClient; //导入方法依赖的package包/类
/**
 * will be called after the awaitRunning event is called from the WalletAppKit
 */
public void onBitcoinSetup() {
	bitcoin.peerGroup().addEventListener(new PeerListener());
	TorClient tor = bitcoin.peerGroup().getTorClient();
	if(tor != null)
		tor.addInitializationListener(listener);          	    	
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:10,代码来源:Controller.java

示例2: onBitcoinSetup

import com.subgraph.orchid.TorClient; //导入方法依赖的package包/类
public void onBitcoinSetup() {
    model.setWallet(bitcoin.wallet());
    addressControl.addressProperty().bind(model.addressProperty());
    balance.textProperty().bind(EasyBind.map(model.balanceProperty(), coin -> MonetaryFormat.BTC.noCode().format(coin).toString()));
    // Don't let the user click send money when the wallet is empty.
    sendMoneyOutBtn.disableProperty().bind(model.balanceProperty().isEqualTo(Coin.ZERO));

    TorClient torClient = Main.bitcoin.peerGroup().getTorClient();
    if (torClient != null) {
        SimpleDoubleProperty torProgress = new SimpleDoubleProperty(-1);
        String torMsg = "Initialising Tor";
        syncItem = Main.instance.notificationBar.pushItem(torMsg, torProgress);
        torClient.addInitializationListener(new TorInitializationListener() {
            @Override
            public void initializationProgress(String message, int percent) {
                Platform.runLater(() -> {
                    syncItem.label.set(torMsg + ": " + message);
                    torProgress.set(percent / 100.0);
                });
            }

            @Override
            public void initializationCompleted() {
                Platform.runLater(() -> {
                    syncItem.cancel();
                    showBitcoinSyncMessage();
                });
            }
        });
    } else {
        showBitcoinSyncMessage();
    }
    model.syncProgressProperty().addListener(x -> {
        if (model.syncProgressProperty().get() >= 1.0) {
            readyToGoAnimation();
            if (syncItem != null) {
                syncItem.cancel();
                syncItem = null;
            }
        } else if (syncItem == null) {
            showBitcoinSyncMessage();
        }
    });
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:45,代码来源:MainController.java

示例3: onBitcoinSetup

import com.subgraph.orchid.TorClient; //导入方法依赖的package包/类
public void onBitcoinSetup() {
     model.setWallet(bitcoin.wallet());
     addressControl.addressProperty().bind(model.addressProperty());
     balance.textProperty().bind(EasyBind.map(model.balanceProperty(), coin -> MonetaryFormat.BTC.noCode().format(coin).toString()));
     // Don't let the user click send money when the wallet is empty.
     sendMoneyOutBtn.disableProperty().bind(model.balanceProperty().isEqualTo(Coin.ZERO));

     TorClient torClient = Main.bitcoin.peerGroup().getTorClient();
     if (torClient != null) {
         SimpleDoubleProperty torProgress = new SimpleDoubleProperty(-1);
         String torMsg = "Initialising Tor";
         syncItem = Main.instance.notificationBar.pushItem(torMsg, torProgress);
         torClient.addInitializationListener(new TorInitializationListener() {
             @Override
             public void initializationProgress(String message, int percent) {
                 Platform.runLater(() -> {
                     syncItem.label.set(torMsg + ": " + message);
                     torProgress.set(percent / 100.0);
                 });
             }

             @Override
             public void initializationCompleted() {
                 Platform.runLater(() -> {
                     syncItem.cancel();
                     showBitcoinSyncMessage();
                 });
             }
         });
     } else {
         showBitcoinSyncMessage();
     }
     model.syncProgressProperty().addListener(x -> {
         if (model.syncProgressProperty().get() >= 1.0) {
             readyToGoAnimation();
             if (syncItem != null) {
                 syncItem.cancel();
                 syncItem = null;
             }
         } else if (syncItem == null) {
             showBitcoinSyncMessage();
         }
     });
     
     Bindings.bindContent(outputSelect.getItems(), model.getOutputs());
     
     outputSelect.setCellFactory(new Callback<ListView<TransactionOutput>, ListCell<TransactionOutput>>() {

@Override
public ListCell<TransactionOutput> call(
		ListView<TransactionOutput> param) {
	return new TextFieldListCell<TransactionOutput>(new StringConverter<TransactionOutput>() {

		@Override
		public String toString(TransactionOutput object) {
			return (object.getValue().toPlainString() + " BTC | " + object.getAddressFromP2PKHScript(object.getParams()));
		}

		@Override
		public TransactionOutput fromString(String string) {
			// TODO Auto-generated method stub
			return null;
		}
		
	});
}
     	
     });
     
     destAddr = Main.bitcoin.wallet().currentReceiveAddress();
     changeAddr = Main.bitcoin.wallet().getChangeAddress();
     
     destination.setEditable(false);
     destination.setText(destAddr.toString());
     change.setEditable(false);
     change.setText(changeAddr.toString());
     
     debugInfo.setEditable(false);
     debugInfo.clear();
 }
 
开发者ID:egordon,项目名称:CoinJoin,代码行数:81,代码来源:MainController.java

示例4: onNuBitsSetup

import com.subgraph.orchid.TorClient; //导入方法依赖的package包/类
public void onNuBitsSetup() {
    model.setWallet(nubits.wallet());
    addressControl.addressProperty().bind(model.addressProperty());
    balance.textProperty().bind(EasyBind.map(model.balanceProperty(), coin -> MonetaryFormat.NBT.noCode().format(coin).toString()));
    // Don't let the user click send money when the wallet is empty.
    sendMoneyOutBtn.disableProperty().bind(model.balanceProperty().isEqualTo(Coin.ZERO));

    TorClient torClient = Main.nubits.peerGroup().getTorClient();
    if (torClient != null) {
        SimpleDoubleProperty torProgress = new SimpleDoubleProperty(-1);
        String torMsg = "Initialising Tor";
        syncItem = Main.instance.notificationBar.pushItem(torMsg, torProgress);
        torClient.addInitializationListener(new TorInitializationListener() {
            @Override
            public void initializationProgress(String message, int percent) {
                Platform.runLater(() -> {
                    syncItem.label.set(torMsg + ": " + message);
                    torProgress.set(percent / 100.0);
                });
            }

            @Override
            public void initializationCompleted() {
                Platform.runLater(() -> {
                    syncItem.cancel();
                    showNuBitsSyncMessage();
                });
            }
        });
    } else {
        showNuBitsSyncMessage();
    }
    model.syncProgressProperty().addListener(x -> {
        if (model.syncProgressProperty().get() >= 1.0) {
            readyToGoAnimation();
            if (syncItem != null) {
                syncItem.cancel();
                syncItem = null;
            }
        } else if (syncItem == null) {
            showNuBitsSyncMessage();
        }
    });
}
 
开发者ID:Cybnate,项目名称:NuBitsj,代码行数:45,代码来源:MainController.java


注:本文中的com.subgraph.orchid.TorClient.addInitializationListener方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。