7879808182838485868788
LOG.debug("Going to sleep on queue"); Operation op = pendingOps.poll(1000, TimeUnit.MILLISECONDS); if(op != null){ synchronized(op){ while(!op.isReady()){ op.wait(); } } LOG.debug("Request ready"); switch(op.type){
104105106107108109110111112113114
while(!stop){ Operation op = pendingOps.poll(1000, TimeUnit.MILLISECONDS); if(op != null){ synchronized(op){ while(!op.isReady()){ op.wait(1000); } } switch(op.type){ case Operation.ADD: