xlang v5.1 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
IRCPEventHandler.x
浏览该文件的文档.
1
6 // 定义常量:不需要处理
7 // 该常量表示当前事件或数据不需要进行特殊处理
8 public static const int DONT_NEED_PROCESS;
9 // 定义常量:数据不足
10 // 该常量表示接收到的数据量不足以进行后续处理
11 public static const int DATA_NOTENOUGH;
12 public bool onNewInstance(long, int);
13 public bool onDeleteInstance(long);
14 public void onAccessFailed(long);
15 public bool onTimeout(long);
16 public int onDecode(long, byte[], int, Stream);
17 public int onEncode(long, byte[], int, Stream);
18 public int getDecodeLength(long, byte[], int);
19};
static const int DATA_NOTENOUGH
int onEncode(long, byte[], int, Stream)
void onAccessFailed(long)
int onDecode(long, byte[], int, Stream)
int getDecodeLength(long, byte[], int)
static const int DONT_NEED_PROCESS
bool onTimeout(long)
bool onDeleteInstance(long)
bool onNewInstance(long, int)
Definition Stream.x:6