jnr.posix.WindowsChildRecord 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/
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package jnr.posix;
/**
*
* @author enebo
*/
public class WindowsChildRecord {
private final HANDLE process;
private final int pid;
public WindowsChildRecord(HANDLE process, int pid) {
this.process = process;
this.pid = pid;
}
public HANDLE getProcess() {
return process;
}
public int getPid() {
return pid;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy