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

Examples of org.apache.tools.ant.taskdefs.condition.Socket.eval()


        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
Copyright © 2018 www.massapi.com. 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.