mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2024-11-13 00:18:00 +00:00
readd pubsub method until release
This commit is contained in:
parent
4e3abc97b3
commit
22f505e8a2
@ -337,4 +337,22 @@ public abstract class AbstractRedisBungeeAPI {
|
||||
public static AbstractRedisBungeeAPI getAbstractRedisBungeeAPI() {
|
||||
return abstractRedisBungeeAPI;
|
||||
}
|
||||
|
||||
@Deprecated(forRemoval = true)
|
||||
public void registerPubSubChannels(String... channels) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Warning: this is Legacy API to maintain backward compatibility with RedisBungee Pre fork 0.5
|
||||
* <p>
|
||||
* Unregister (a) PubSub channel(s).
|
||||
*
|
||||
* @param channels the channels to unregister
|
||||
* @since 0.3
|
||||
* @deprecated No longer required
|
||||
*/
|
||||
@Deprecated(forRemoval = true)
|
||||
public void unregisterPubSubChannels(String... channels) {
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -135,6 +135,7 @@ public class RedisBungeeAPI extends AbstractRedisBungeeAPI {
|
||||
* @since 0.3
|
||||
* @deprecated No longer required
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public final void unregisterPubSubChannels(String... channels) {
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user