When we obtain a connector from a selectorHandler, no controller is
assigned to the connector.
connectorHandler = selectorHandler.acquireConnectorHandler();
connectorHandler.getController() will return null.
I think this is bug (a small one) and
selectorHandler.acquireConnectorHandler() should also set the
connectorHandler's controller.
As a work around one needs to do:
connectorHandler = selectorHandler.acquireConnectorHandler();
connectorHandler.setController(myController);
By the way, what is the right channel for users to report bugs?
Simon