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

com.gwtplatform.dispatch.rpc.shared.DispatchAsync Maven / Gradle / Ivy

/*
 * Copyright 2011 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.rpc.shared;

import com.google.gwt.user.client.rpc.AsyncCallback;
import com.gwtplatform.dispatch.shared.DispatchRequest;

/**
 * The asynchronous client-side dispatcher service with an arbitrary action type. The server-side implementation is
 * {@link com.gwtplatform.dispatch.rpc.server.guice.DispatchImpl}.
 * 

* This class is closely related to {@link DispatchServiceAsync}. In theory this class wouldn't be needed, but we use it * to workaround a GWT limitation. In fact, GWT currently can't correctly handle having generic method templates in * method signatures (eg. <A> A create( Class type )) * * @see DispatchAsync * @see com.gwtplatform.dispatch.rpc.server.Dispatch * @see com.gwtplatform.dispatch.rpc.server.guice.DispatchImpl * @see DispatchService * @see DispatchServiceAsync * @see com.gwtplatform.dispatch.rpc.server.guice.DispatchServiceImpl */ public interface DispatchAsync { /** * This method is called client-side whenever a new action is executed. * * @see DispatchServiceAsync#execute */ , R extends Result> DispatchRequest execute(A action, AsyncCallback callback); /** * This method is called client-side whenever a previous executed action need to be undone. * * @see DispatchServiceAsync#undo */ , R extends Result> DispatchRequest undo(A action, R result, AsyncCallback callback); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy