[問題] ethereumj sync thread

作者: pttuserboy (pttuserboy)   2016-10-12 18:27:25
https://github.com/ethereum/ethereumj
請問有人在看這個嘛
這是一個類似比特幣的東西
我現在在看這一個sample
SendTransaction.java
https://goo.gl/Os9Jf6
它可以sync blockchain
sync完整之後可以SendTransaction
我現在遇到的問題是
我想把這個包成一個function
但是他在SendTransaction
之後不會停止
應該是有一個thread會繼續sync blockchain
我想知道如果我想他在SendTransaction
之後停止sync blockchain的thread該怎做呢
BasicSample.java
https://goo.gl/t35j0c
目前我看到這個
public void run() {
try {
logger.info("Sample worker thread started.");
waitForAvailablePeers();
waitForSyncPeers();
waitForFirstBlock();
waitForSync();
onSyncDone();
//我希望他在這邊結束
} catch (Exception e) {
logger.error("Error occurred in Sample: ", e);
}
}

Links booklink

Contact Us: admin [ a t ] ucptt.com