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

io.zbus.transport.Server Maven / Gradle / Ivy

There is a newer version: 1.0.0-b1
Show newest version
package io.zbus.transport;

import java.io.Closeable;

public interface Server extends Closeable{ 
	void codec(CodecInitializer codecInitializer);
	EventLoop getEventLoop();
	IoAdaptor getIoAdaptor(); //default
	ServerAddress getServerAddress();
	void start(int port, IoAdaptor ioAdaptor) throws Exception;
	void start(String host, int port, IoAdaptor ioAdaptor) throws Exception;  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy