我用 apache mina 玩了几天,我想问你如何通过扩展(或实现)IoSession 来创建类似 MyIoSession 的东西。
我想这样做的原因是因为在 Handler 类中我想要这样的东西:
public class MyHandler extends IoHandlerAdapter{
public void messageReceived( MyIoSession session, Object message ) throws Exception
{
// here I have MyIoSession instead of IoSession which will have more info something
// like an unique ID
}
}
这样 MyIoSession 将有一些唯一的 ID,这样我将确定哪个客户端正在向服务器发送消息。
另外,如果还有其他更好的方法可以实现这一点,请随时告诉我。
谢谢