类 BaseInvoke
- java.lang.Object
-
- network.nerve.core.rpc.invoke.BaseInvoke
-
- 直接已知子类:
KernelInvoke,RegisterInvoke
public abstract class BaseInvoke extends Object
如果一个Response需要自动处理,那么自动处理的类必须继承BaseInvoke,然后重写callBack方法 If a Response needs to be automatically processed, the automatically processed class must inherit BaseInvoke and then override the callBack method- 作者:
- tangyi
-
-
构造器概要
构造器 构造器 说明 BaseInvoke()
-
-
-
方法详细资料
-
callBack
public abstract void callBack(Response response)
自动回调的类需要重写的方法 A method that needs to be rewritten for a class that calls back automatically- 参数:
response- 请求的响应信息,Response information to requests
-
-