}
MemcachedRestRequest request = (MemcachedRestRequest) e.getMessage();
MemcachedRestChannel channel = new MemcachedRestChannel(ctx.getChannel(), request);
if (!restController.dispatchRequest(request, channel)) {
channel.sendResponse(new StringRestResponse(BAD_REQUEST, "No handler found for uri [" + request.uri() + "] and method [" + request.method() + "]"));
}
super.messageReceived(ctx, e);
}
}