/* @VaadinApache2LicenseForJavaFiles@ */ package com.vaadin.terminal.gwt.client.communication; import com.google.gwt.core.client.GWT; import com.vaadin.shared.communication.ServerRpc; import com.vaadin.terminal.gwt.client.ServerConnector; /** * Class for creating proxy instances for Client to Server RPC. * * @since 7.0 */ public class RpcProxy { private static RpcProxyCreator impl = GWT.create(RpcProxyCreator.class); /** * Create a proxy class for the given Rpc interface and assign it to the * given connector. * * @param rpcInterface * The rpc interface to construct a proxy for * @param connector * The connector this proxy is connected to * @return A proxy class used for calling Rpc methods. */ public static T create(Class rpcInterface, ServerConnector connector) { return impl.create(rpcInterface, connector); } public interface RpcProxyCreator { T create(Class rpcInterface, ServerConnector connector); } }