processResponse method

HandlerResponse processResponse(
  1. ReadBuffer response
)

Parses the response 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

HandlerResponse processResponse(ReadBuffer response) => HandlerResponse(result: checkResponse(response));