Example #1
0
 @Ignore
 @Test
 public void testReserve() throws IOException, InterruptedException, ExecutionException {
   client.watch("kk");
   for (int i = 0; i < 6; i++) {
     Job job = client.reserve();
     Assert.assertEquals("haha", new String(job.getData()));
     client.delete(job);
   }
 }