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

io.github.wanggit.antrpc.server.IServer Maven / Gradle / Ivy

The newest version!
package io.github.wanggit.antrpc.server;

public interface IServer {
    void open(Integer port) throws InterruptedException;

    void open() throws InterruptedException;

    void close();

    boolean isActive();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy