Package org.jboss.gravia.process.api

Examples of org.jboss.gravia.process.api.PortManager


    protected final int nextAvailablePort(int portValue) {
        return nextAvailablePort(portValue, null);
    }

    protected int nextAvailablePort(int portValue, InetAddress bindAddr) {
        PortManager portManager = ServiceLocator.getRequiredService(PortManager.class);
        return portManager.nextAvailablePort(portValue, bindAddr);
    }
View Full Code Here

TOP

Related Classes of org.jboss.gravia.process.api.PortManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.