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

org.wildfly.common.os.Process Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2017 Red Hat, Inc., and individual contributors
 * as indicated by the @author tags.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.wildfly.common.os;

/**
 * Utilities for getting information about the current process.
 *
 * @author David M. Lloyd
 * @deprecated Use {@link io.smallrye.common.os.Process} instead.
 */
@Deprecated(forRemoval = true)
public final class Process {
    private Process() {
    }

    /**
     * Get the name of this process.  If the process name is not known, then "<unknown>" is returned.
     *
     * @return the process name (not {@code null})
     * @deprecated Use {@link io.smallrye.common.os.Process#getProcessName} instead.
     */
    @Deprecated(forRemoval = true)
    public static String getProcessName() {
        return io.smallrye.common.os.Process.getProcessName();
    }

    /**
     * Get the ID of this process.  This is the operating system specific PID.  If the PID cannot be determined,
     * -1 is returned.
     *
     * @return the ID of this process, or -1 if it cannot be determined
     * @deprecated Use {@link io.smallrye.common.os.Process#getProcessId} instead.
     */
    @Deprecated(forRemoval = true)
    public static long getProcessId() {
        return io.smallrye.common.os.Process.getProcessId();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy