aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/widgetset/client/gwtrpc/GwtRpcServiceTestAsync.java
blob: 3577654f152ae566dfde18e43a2d6fb97f02d11b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.vaadin.tests.widgetset.client.gwtrpc;

import com.google.gwt.user.client.rpc.AsyncCallback;

/**
 * Test GWT RPC in Vaadin DevMode.
 *
 * @author Vaadin Ltd
 */
public interface GwtRpcServiceTestAsync {

    /*
     * Dummy async method to verify if RPC works.
     */
    void giveMeThat(String that, String haveThis,
            AsyncCallback<String> callback);

}