forked from Limework/RediSkript
added getJedisPool for skript reflect usage
This commit is contained in:
parent
01b5304719
commit
58457af086
@ -27,6 +27,8 @@ public class RedisController extends BinaryJedisPubSub implements Runnable {
|
|||||||
private final JedisPool jedisPool;
|
private final JedisPool jedisPool;
|
||||||
|
|
||||||
//this seems useless unless tls is OFF!
|
//this seems useless unless tls is OFF!
|
||||||
|
|
||||||
|
// class author is govindas :/
|
||||||
private final Encryption encryption;
|
private final Encryption encryption;
|
||||||
|
|
||||||
private byte[][] channelsInByte;
|
private byte[][] channelsInByte;
|
||||||
@ -257,4 +259,10 @@ public class RedisController extends BinaryJedisPubSub implements Runnable {
|
|||||||
public Boolean isRedisConnectionOffline() {
|
public Boolean isRedisConnectionOffline() {
|
||||||
return isConnectionBroken.get();
|
return isConnectionBroken.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// for skript reflect :)
|
||||||
|
public JedisPool getJedisPool() {
|
||||||
|
return jedisPool;
|
||||||
|
}
|
||||||
|
//
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user