io.boodskap.iot.ext.fs.bin.rules.InOutQueue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fs-binary-rules Show documentation
Show all versions of fs-binary-rules Show documentation
Simple file system poller for Boodskap IoT Platform
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;
}
}