@Override
public void onSuccess(ClientActionHandler<?, ?> clientActionHandler) {
if (clientActionHandler.getActionType() != action.getClass()) {
dispatchRequest.cancel();
callback.onFailure(new ClientActionHandlerMismatchException(
(Class<? extends Action<?>>) action.getClass(), clientActionHandler.getActionType()));
return;
}
if (dispatchRequest.isPending()) {