![JAR search and dependency download from the Maven repository](/logo.png)
jnr.posix.WindowsChildRecord Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jnr-unixsocket-nodep Show documentation
Show all versions of jnr-unixsocket-nodep Show documentation
com.github.jnr:jnr-unixsocket with orh.objectweb.asm shaded
The newest version!
/*
* 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