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

jnr.posix.WindowsChildRecord Maven / Gradle / Ivy

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