Package org.apache.tools.ant.taskdefs.condition

Examples of org.apache.tools.ant.taskdefs.condition.Socket


            throw new BuildException("Failed to exit forked process.", throwable);
        }
    }

    private int findFreePort() throws BuildException {
        Socket socket = new Socket();

        socket.setServer("localhost");
        for(int i = 60 * 1024; i < 65000; i++) {
            socket.setPort(i);
            if(!socket.eval()) {
                return i;
            }
        }

        throw new BuildException("Failed to locate a free port off which to launch StandAloneBootStrapper.");
View Full Code Here

TOP

Related Classes of org.apache.tools.ant.taskdefs.condition.Socket

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.