You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ClientConnector.java 486B

12345678910111213141516171819
  1. package com.vaadin.terminal.gwt.server;
  2. import java.util.List;
  3. import com.vaadin.terminal.gwt.client.Connector;
  4. public interface ClientConnector extends Connector {
  5. /**
  6. * Returns the list of pending server to client RPC calls and clears the
  7. * list.
  8. *
  9. * @return unmodifiable ordered list of pending server to client method
  10. * calls (not null)
  11. *
  12. * @since 7.0
  13. */
  14. public List<ClientMethodInvocation> retrievePendingRpcCalls();
  15. }