mysql1/src/handlers/handler
library
Classes
-
Handler
-
Each command which the mysql protocol implements is handled with a
_Handler
object.
A handler is created with the appropriate parameters when the command is invoked
from the connection. The transport is then responsible for sending the
request which the handler creates, and then parsing the result returned by
the mysql server, either synchronously or asynchronously.
-
HandlerResponse
-
Represents the response from a
_Handler
when _Handler.processResponse
is
called. If the handler has finished processing the response, finished is true,
nextHandler is irrelevant and result contains the result to return to the
user. If the handler needs another handler to process the response, finished
is false, nextHandler contains the next handler which should process the
next packet from the server, and result is _NO_RESULT
.