From 454d5cb372290c936cb949e833a78adbfb5bc0ac Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Sat, 16 Mar 2013 18:19:51 +0100 Subject: [PATCH] Add interface for reusable sinks. --- .../pterodactylus/sonitus/data/ReusableSink.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/main/java/net/pterodactylus/sonitus/data/ReusableSink.java diff --git a/src/main/java/net/pterodactylus/sonitus/data/ReusableSink.java b/src/main/java/net/pterodactylus/sonitus/data/ReusableSink.java new file mode 100644 index 0000000..2d4f4bb --- /dev/null +++ b/src/main/java/net/pterodactylus/sonitus/data/ReusableSink.java @@ -0,0 +1,28 @@ +/* + * Sonitus - MultiSourceSink.java - Copyright © 2013 David Roden + * + * This program 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. + * + * This program 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 this program. If not, see . + */ + +package net.pterodactylus.sonitus.data; + +/** + * Extension of the {@link Sink} interface that supports changing the source + * without causing a reconnection in the sink. + * + * @author David ‘Bombe’ Roden + */ +public interface ReusableSink extends Sink { + +} -- 2.7.4