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

net.xdob.icap4j.ReqSem Maven / Gradle / Ivy

There is a newer version: 0.4.9
Show newest version
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