This commit is contained in:
CaiHQ 2022-05-19 11:06:06 +08:00
parent a2fa767d89
commit bd6135b6ea
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package org.bdware.sdk.consistency.api.context;
import com.google.gson.JsonObject;
import org.bdware.sc.conn.ResultCallback;
public interface IMasterClientTCPAction {
void asyncExecuteContractLocally(JsonObject jo, ResultCallback rc);
}

View File

@ -1,6 +1,8 @@
package org.bdware.sdk.consistency.api.context; package org.bdware.sdk.consistency.api.context;
public interface ISDKContext { public interface ISDKContext {
IMasterClientTCPAction getMasterClientTCPAction();
IMasterServerTCPAction getMasterServerTCPAction(); IMasterServerTCPAction getMasterServerTCPAction();
INetworkManager getNetworkManager(); INetworkManager getNetworkManager();