diff options
author | daneren2005 <daneren2005@gmail.com> | 2013-07-29 17:01:34 -0700 |
---|---|---|
committer | daneren2005 <daneren2005@gmail.com> | 2013-07-29 17:01:34 -0700 |
commit | bcba7ff613fbb532391722e806f19b73fe006804 (patch) | |
tree | 8ecca29eb7e5fd355ce6c96f787a02efdb2fe20d | |
parent | 4e6548af46e4d2fca15e353d8b9529190dbc9645 (diff) | |
download | dsub-bcba7ff613fbb532391722e806f19b73fe006804.tar.gz dsub-bcba7ff613fbb532391722e806f19b73fe006804.tar.bz2 dsub-bcba7ff613fbb532391722e806f19b73fe006804.zip |
Create RemoteController Interface
-rw-r--r-- | src/github/daneren2005/dsub/service/RemoteController | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/github/daneren2005/dsub/service/RemoteController b/src/github/daneren2005/dsub/service/RemoteController new file mode 100644 index 00000000..789881b1 --- /dev/null +++ b/src/github/daneren2005/dsub/service/RemoteController @@ -0,0 +1,32 @@ +/* + This file is part of Subsonic. + + Subsonic is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Subsonic is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Subsonic. If not, see <http://www.gnu.org/licenses/>. + + Copyright 2009 (C) Sindre Mehus +*/ + +package github.daneren2005.dsub.service; + +public interface RemoteController { + void start(); + void stop(); + + void updatePlaylist(); + void changePosition(int seconds); + void changeTrack(int index, DownloadFile song); + void setVolume(float gain); + + int getRemotePosition(); +} |