Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Not A Problem
-
2.0.3
-
None
-
None
-
OS:Debian 2.6.32-41
MINA Version:2.0.3
Description
My Client Code:
public static void main(String[] args) throws Exception {
Socket[] sockets = new Socket[100];
try {
for (int i = 0; i < 100; i++) {
// sockets[i]=new Socket(args[0], Integer.parseInt(args[1]));
sockets[i] = new Socket("...", 8282);
try
catch (InterruptedException e)
{ e.printStackTrace(); } }
} catch (Exception e)
while (true) {
try
catch (InterruptedException e)
{ // TODO Auto-generated catch block e.printStackTrace(); } }
}
where the 100 connection finished,"sessionCreated(IoSession session)" called 100 times(It's OK),Then I kill the client process.I found" sessionClosed(IoSession session)" only called 33 times,"exceptionCaught(IoSession session, Throwable cause) " called 65 times.So I suggest “sessionClosed” is not called every time .