From bcba7ff613fbb532391722e806f19b73fe006804 Mon Sep 17 00:00:00 2001 From: daneren2005 Date: Mon, 29 Jul 2013 17:01:34 -0700 Subject: Create RemoteController Interface --- .../daneren2005/dsub/service/RemoteController | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/github/daneren2005/dsub/service/RemoteController 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 . + + 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(); +} -- cgit v1.2.3