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

io.smallrye.common.os.ProcessInfo Maven / Gradle / Ivy

The newest version!
package io.smallrye.common.os;

/**
 * Returns information about a Process
 *
 * @deprecated Use the {@link ProcessHandle} API instead.
 */
@Deprecated(since = "2.4", forRemoval = true)
public class ProcessInfo {
    private final long id;
    private final String command;

    public ProcessInfo(long id, String command) {
        this.id = id;
        this.command = command;
    }

    public long getId() {
        return id;
    }

    public String getCommand() {
        return command;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy