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

com.github.thorbenkuck.network.server.Builder Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.network.server;

import java.io.IOException;

public interface Builder {

	Builder blocking();

	Builder nonBlocking();

	ServerContainer build(int port) throws IOException;

	Builder withCustomConnectionFactory(ServerConnectionFactory serverConnectionFactory);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy