net.xdob.icap4j.ReqSem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icap4j Show documentation
Show all versions of icap4j Show documentation
The ICAP Protocol Codec for Java
package net.xdob.icap4j;
import java.util.concurrent.Semaphore;
public class ReqSem {
private long nanoTime = System.nanoTime();
private Semaphore semaphore;
public ReqSem(Semaphore semaphore) {
this.semaphore = semaphore;
}
public long getNanoTime() {
return nanoTime;
}
public Semaphore getSemaphore() {
return semaphore;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy