// register the new SocketChannel with our Selector, indicating we'd like to be notified
// when there's data waiting to be read
socketChannel.register(selector, SelectionKey.OP_READ, theProtocol);
}
catch(Exception ex) {
throw new SentinelException(ex);
}
}