mirror of
https://gitee.com/BDWare/sdk-java
synced 2025-01-09 17:34:19 +00:00
feat: update event subscriber
update EventSubscriberClient.subscribeEvent to use event mechanism
This commit is contained in:
parent
dc5ee173f6
commit
4ef2d7a74b
@ -65,12 +65,11 @@ public class EventSubscriberClient implements Handler {
|
||||
bc.sendText(new Gson().toJson(setNodeID));
|
||||
}
|
||||
|
||||
public void subscribeEvent(String nodeID, String contractID, String event) {
|
||||
public void subscribeEvent(String contractID, String topic) {
|
||||
Map<String, String> msg = new HashMap<>();
|
||||
msg.put("action", "subEvent");
|
||||
msg.put("target", nodeID);
|
||||
msg.put("contractID", contractID);
|
||||
msg.put("event", event);
|
||||
msg.put("topic", topic);
|
||||
bc.sendText(new Gson().toJson(msg));
|
||||
}
|
||||
}
|
||||
|
@ -16,7 +16,6 @@ public class EventClientTest {
|
||||
testClient.waitForConnect();
|
||||
|
||||
testClient.subscribeEvent(
|
||||
"04889daf457aae33f382d3d7688f154a1ffdd057b660e626314f46fd6864c3162bf941b25abe98dd9d7df4d44e31570a15166883271b0c901931db82f714aeeebf",
|
||||
"BDCoinAt162",
|
||||
"Transfer");
|
||||
try {
|
||||
@ -25,7 +24,7 @@ public class EventClientTest {
|
||||
e.printStackTrace();
|
||||
}
|
||||
Scanner sc = new Scanner(System.in);
|
||||
for (; ; ) {
|
||||
while (true) {
|
||||
String cmd = sc.nextLine();
|
||||
System.out.println("Wait for event");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user