summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/ui/MediaControl.java
blob: 0a608a16852838705858384c4b40b237a625626b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* 
@VaadinApache2LicenseForJavaFiles@
 */

package com.vaadin.shared.ui;

import com.vaadin.shared.communication.ClientRpc;

/**
 * Server to client RPC interface for controlling playback of the media.
 * 
 * @since 7.0
 */
public interface MediaControl extends ClientRpc {
    /**
     * Start playing the media.
     */
    public void play();

    /**
     * Pause playback of the media.
     */
    public void pause();
}