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.

123456789101112131415161718192021222324
  1. /*
  2. @VaadinApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.shared.ui;
  5. import com.vaadin.shared.communication.ClientRpc;
  6. /**
  7. * Server to client RPC interface for controlling playback of the media.
  8. *
  9. * @since 7.0
  10. */
  11. public interface MediaControl extends ClientRpc {
  12. /**
  13. * Start playing the media.
  14. */
  15. public void play();
  16. /**
  17. * Pause playback of the media.
  18. */
  19. public void pause();
  20. }