We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.server.
Class JavaScriptCallbackHelper
- java.lang.Object
-
- com.vaadin.server.JavaScriptCallbackHelper
-
All Implemented Interfaces:
public class JavaScriptCallbackHelper extends Object implements Serializable
Internal helper class used to implement functionality common to
AbstractJavaScriptComponent
andAbstractJavaScriptExtension
. Corresponding support in client-side code is incom.vaadin.client.JavaScriptConnectorHelper
.You should most likely no use this class directly.
Since:
7.0.0
Author:
Vaadin Ltd
See Also:
-
-
Constructor Summary
Constructors Constructor Description JavaScriptCallbackHelper(AbstractClientConnector connector)
-
Method Summary
All Methods Modifier and Type Method Description void
invokeCallback(String name, Object... arguments)
void
registerCallback(String functionName, JavaScriptFunction javaScriptCallback)
void
registerRpc(Class<?> rpcInterfaceType)
-
-
-
Constructor Detail
-
JavaScriptCallbackHelper
public JavaScriptCallbackHelper(AbstractClientConnector connector)
-
-
Method Detail
-
registerCallback
public void registerCallback(String functionName, JavaScriptFunction javaScriptCallback)
-
registerRpc
public void registerRpc(Class<?> rpcInterfaceType)
-
-