initialize(listener,null);
}
public void initialize(Callback listener,EventLoop externalEventLoop) throws IOException {
if (externalEventLoop == null) {
_eventLoop = new EventLoop();
_ownsEventLoop = true;
}
else {
_eventLoop = externalEventLoop;
_ownsEventLoop = false;