Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save logentries-gists/2692b2f7bc88145cc3ce00ec1c763180 to your computer and use it in GitHub Desktop.

Select an option

Save logentries-gists/2692b2f7bc88145cc3ce00ec1c763180 to your computer and use it in GitHub Desktop.
public class ChannelAdapter {
private static final Logger LOGGER = LoggerFactory.getLogger(ChannelAdapter.class);
private final String waitQueue = "TestSample:waitQueue";
private final String workQueue = "TestSample:workQueue";
private final JedisPool jedisPool;
/**
* ChannelAdapter in charge of communication with messaging
* service.
*
* @param jedisPool
* - provider of jedis connections
*/
public ChannelAdapter(JedisPool jedisPool) {
this.jedisPool = jedisPool;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment