56575859606162
private static final Logger RAW_LOGGER = Logger.getLogger("RAW"); public ConnectionHandler(final ConnectionEndpoint connection) { _connection = connection; _delegate = new ProtocolHeaderHandler(connection); }
264265266267268269270271272273274
{ _connection.handleError(frameParsingError); } if(_connection.isSASLComplete()) { return new ProtocolHeaderHandler(_connection); } else { return this; }
55565758596061