All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.boodskap.iot.ext.fs.bin.rules.InOutQueue Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package io.boodskap.iot.ext.fs.bin.rules;

import java.util.concurrent.LinkedBlockingQueue;

public class InOutQueue {

	private static final LinkedBlockingQueue inQ = new LinkedBlockingQueue();
	private static final LinkedBlockingQueue outQ = new LinkedBlockingQueue();
	
	private InOutQueue() {
	}

	public static LinkedBlockingQueue getInq() {
		return inQ;
	}

	public static LinkedBlockingQueue getOutq() {
		return outQ;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy