
fitnesse.socketservice.ServerSocketFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
The newest version!
package fitnesse.socketservice;
import java.io.IOException;
import java.net.ServerSocket;
public interface ServerSocketFactory {
/**
* Create a new socket on the provided port number
*
* @param port port
* @return A fresh socket.
* @throws IOException Thrown if socket can not be created.
*/
ServerSocket createServerSocket(int port) throws IOException;
ServerSocket createLocalOnlyServerSocket(int port) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy