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 ClientMethodInvocation
- java.lang.Object
-
- com.vaadin.server.ClientMethodInvocation
-
All Implemented Interfaces:
public class ClientMethodInvocation extends Object implements Serializable, Comparable<ClientMethodInvocation>
Internal class for keeping track of pending server to client method invocations for a Connector.
Since:
7.0
See Also:
-
-
Constructor Summary
Constructors Constructor Description ClientMethodInvocation(ClientConnector connector, String interfaceName, Method method, Object[] parameters)
-
Method Summary
All Methods Modifier and Type Method Description int
compareTo(ClientMethodInvocation o)
ClientConnector
getConnector()
String
getInterfaceName()
String
getMethodName()
Object[]
getParameters()
Type[]
getParameterTypes()
protected long
getSequenceNumber()
-
-
-
Constructor Detail
-
ClientMethodInvocation
public ClientMethodInvocation(ClientConnector connector, String interfaceName, Method method, Object[] parameters)
-
-
Method Detail
-
getParameterTypes
public Type[] getParameterTypes()
-
getConnector
public ClientConnector getConnector()
-
getInterfaceName
public String getInterfaceName()
-
getMethodName
public String getMethodName()
-
getParameters
public Object[] getParameters()
-
getSequenceNumber
protected long getSequenceNumber()
-
compareTo
public int compareTo(ClientMethodInvocation o)
Specified by:
compareTo
in interfaceComparable<ClientMethodInvocation>
-
-