xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
AsyncInput.xcs
浏览该文件的文档.
1
5@Declare
6interface AsyncInput{
7
18 void notify(AsyncOutput output, int type, long bind, bool bsucceed, long context,int length);
19
20
29 bool newInstance(AsyncOutput output, int type, long bind, long context);
30
31
39 bool dataArrives(AsyncOutput output, long context, byte[] data);
40
47 bool deleteInstance(AsyncOutput output, long context);
48
49
56 bool inactiveTimeoutVerify(AsyncOutput output, long context);
57};
异步输入接口 需要继承
Definition AsyncInput.xcs:6
bool newInstance(AsyncOutput output, int type, long bind, long context)
新实例创建回调
bool dataArrives(AsyncOutput output, long context, byte[] data)
异步数据到达通知
bool deleteInstance(AsyncOutput output, long context)
实例删除通知
void notify(AsyncOutput output, int type, long bind, bool bsucceed, long context,int length)
通知回调函数
bool inactiveTimeoutVerify(AsyncOutput output, long context)
实例超时通知
异步输出接口 需要继承