processResponse method

  1. @override
HandlerResponse processResponse(
  1. Buffer response
)
override

Parses a Buffer containing the response to the command. Returns a _HandlerResponse. The default implementation returns a finished _HandlerResponse with a result which is obtained by calling checkResponse

Implementation

@override
HandlerResponse processResponse(Buffer response) {
  throw createMySqlProtocolError(
      "Shouldn't have received a response after sending a QUIT message");
}