Issue #1920 - Connect Timeouts with NonBlocking CreateEndPoint.
Made CreateEndPoint and DestroyEndPoint blocking.
This commit is contained in:
parent
ee3b93de03
commit
d1e5883ad4
|
@ -618,7 +618,7 @@ public class ManagedSelector extends ContainerLifeCycle implements Dumpable
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class CreateEndPoint extends Invocable.NonBlocking implements Closeable
|
private class CreateEndPoint implements Runnable, Invocable, Closeable
|
||||||
{
|
{
|
||||||
private final SelectableChannel channel;
|
private final SelectableChannel channel;
|
||||||
private final SelectionKey key;
|
private final SelectionKey key;
|
||||||
|
@ -809,7 +809,7 @@ public class ManagedSelector extends ContainerLifeCycle implements Dumpable
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class DestroyEndPoint extends Invocable.NonBlocking implements Closeable
|
private class DestroyEndPoint implements Runnable, Invocable, Closeable
|
||||||
{
|
{
|
||||||
private final EndPoint endPoint;
|
private final EndPoint endPoint;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue