All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gwtplatform.dispatch.client.DelegatingAsyncCallback Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 ArcBees Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

package com.gwtplatform.dispatch.client;

import com.google.gwt.user.client.rpc.AsyncCallback;
import com.gwtplatform.dispatch.client.interceptor.ExecuteCommand;
import com.gwtplatform.dispatch.client.interceptor.Interceptor;
import com.gwtplatform.dispatch.client.interceptor.InterceptorMismatchException;
import com.gwtplatform.dispatch.shared.TypedAction;

/**
 * {@code AsyncCallback} implementation wrapping another {@link AsyncCallback} object used by a {@link Interceptor}
 * implementations to delegate the execution result.
 *
 * @param  the {@link TypedAction} type.
 * @param  the result type for this action.
 * @param  the interceptor type used.
 */
public abstract class DelegatingAsyncCallback, R, T extends Interceptor>
        implements AsyncCallback, ExecuteCommand {
    private final DispatchCall dispatchCall;
    private final A action;
    private final AsyncCallback callback;
    private final DelegatingDispatchRequest dispatchRequest;

    protected DelegatingAsyncCallback(
            DispatchCall dispatchCall,
            A action,
            AsyncCallback callback,
            DelegatingDispatchRequest dispatchRequest) {
        this.dispatchCall = dispatchCall;
        this.action = action;
        this.callback = callback;
        this.dispatchRequest = dispatchRequest;
    }

    @Override
    public void onSuccess(T interceptor) {
        if (!interceptor.canExecute(getAction())) {
            delegateFailure(interceptor);
        } else if (getDispatchRequest().isPending()) {
            delegateExecute(interceptor);
        }
    }

    @Override
    public void onFailure(Throwable caught) {
        dispatchRequest.cancel();

        dispatchCall.onExecuteFailure(caught);
    }

    protected void delegateFailure(Interceptor interceptor) {
        InterceptorMismatchException exception =
                new InterceptorMismatchException(action.getClass(), interceptor.getActionType());

        onFailure(exception);
    }

    @SuppressWarnings("unchecked")
    protected void delegateExecute(Interceptor interceptor) {
        dispatchRequest.setDelegate(interceptor.execute(action, callback, this));
    }

    protected DelegatingDispatchRequest getDispatchRequest() {
        return dispatchRequest;
    }

    protected TypedAction getAction() {
        return action;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy