
com.github.thorbenkuck.netcom2.auto.ClientFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of NetCom2-Auto Show documentation
Show all versions of NetCom2-Auto Show documentation
Annotation approach to reduce boilerplate code
The newest version!
package com.github.thorbenkuck.netcom2.auto;
import com.github.thorbenkuck.netcom2.network.client.ClientCore;
import com.github.thorbenkuck.netcom2.network.client.ClientStart;
public interface ClientFactory {
ClientFactory use(ObjectRepository objectRepository);
ClientFactoryFinalizer use(ClientStart clientStart);
ClientFactoryFinalizer at(String address, int port);
ClientFactoryFinalizer asNIO(String address, int port);
ClientFactoryFinalizer asTCP(String address, int port);
ClientFactoryFinalizer asUDP(String address, int port);
ClientFactoryFinalizer as(String address, int port, ClientCore clientCore);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy