We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c1d0ef commit 9dd21a8Copy full SHA for 9dd21a8
core/src/org/jsl/collider/ConnectorImpl.java
@@ -457,10 +457,10 @@ else if (state == CONNECTING)
457
public int handleReadyOps( ThreadPool threadPool )
458
{
459
assert( m_selectionKey.readyOps() == SelectionKey.OP_CONNECT );
460
+ m_selectionKey.interestOps( 0 );
461
m_collider.executeInThreadPool( new Starter3(m_socketChannel, m_selectionKey) );
- m_selectionKey.interestOps(0);
462
- m_selectionKey = null;
463
m_socketChannel = null;
+ m_selectionKey = null;
464
return 0;
465
}
466
0 commit comments