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

com.github.thorbenkuck.netcom2.auto.LazyServerFactory Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.netcom2.auto;

import com.github.thorbenkuck.netcom2.network.server.ConnectorCore;
import com.github.thorbenkuck.netcom2.network.server.ServerStart;

public interface LazyServerFactory {

	ServerFactory use(ObjectRepository objectRepository);

	ServerStart at(int port);

	ServerStart asNIO(int port);

	ServerStart asTCP(int port);

	ServerStart asUDP(int port);

	ServerStart as(int port, ConnectorCore connectorCore);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy