Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

ClientRpc.java 594B

1234567891011121314151617181920212223
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.communication;
  5. import java.io.Serializable;
  6. /**
  7. * Interface to be extended by all server to client RPC interfaces.
  8. *
  9. * On the server side, proxies of the interface can be obtained from
  10. * AbstractComponent. On the client, RPC implementations can be registered with
  11. * AbstractConnector.registerRpc().
  12. *
  13. * Note: Currently, each RPC interface may not contain multiple methods with the
  14. * same name, even if their parameter lists would differ.
  15. *
  16. * @since 7.0
  17. */
  18. public interface ClientRpc extends Serializable {
  19. }