Changed the implementation for better understanding

This commit is contained in:
Narendra Pathai
2015-07-27 15:29:56 +05:30
parent 4c22055e47
commit dc4904c8d0
5 changed files with 117 additions and 55 deletions
@@ -0,0 +1,8 @@
package com.iluwatar.halfsynchalfasync;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
public class QueuingLayer {
BlockingQueue<Runnable> incomingQueue = new LinkedBlockingQueue<>();
}