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

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

There is a newer version: 0.4.0
Show newest version
package com.github.thorbenkuck.network.client;

import java.io.IOException;

public interface Builder {

	Builder blocking();

	Builder nonBlocking();

	ClientContainer build(String address, int port) throws IOException;

	Builder withCustomConnectionFactory(ClientConnectionFactory clientConnectionFactory);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy