Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. this.jedis = new Jedis(this.settings.getAddress(), this.settings.getPort());
  2. if(this.settings.isAuth()) {
  3. this.jedis.auth(this.settings.getPassword());
  4. }
  5.  
  6. new Thread(() -> this.jedis.subscribe(this.pubSub, this.channel)).start();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement