com.github.thorbenkuck.network.client.Builder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easy-net Show documentation
Show all versions of easy-net Show documentation
An EventStream driven, simple to use Client/Server framework
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);
}