io.zbus.transport.Server Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zbus Show documentation
Show all versions of zbus Show documentation
a lightweight yet powerful MQ and RPC to build service bus
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