This file contains 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
import java.util.concurrent.BlockingQueue; | |
public class ConsumerTask implements Runnable { | |
private static final int H1 = 0; | |
private static final int H2 = 1; | |
private static final int H3 = 2; | |
private static final int H4 = 3; | |
final static int LIMIT = 100; |