jnr.posix.Timespec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
package jnr.posix;
import jnr.ffi.Struct;
abstract public class Timespec extends Struct {
public Timespec(jnr.ffi.Runtime runtime) {
super(runtime);
}
abstract public void setTime(long[] timespec);
public abstract void sec(long sec);
public abstract void nsec(long nsec);
public abstract long sec();
public abstract long nsec();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy