Created
May 4, 2016 13:30
-
-
Save logentries-gists/2692b2f7bc88145cc3ce00ec1c763180 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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