
as.leap.vertx.rpc.RPCServer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-rpc Show documentation
Show all versions of vertx-rpc Show documentation
Wrap eventBus of vert.x 3 as transport layer for RPC invoking
package as.leap.vertx.rpc;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
/**
* RPC Server
* Created by stream.
*/
public interface RPCServer {
/**
* shutdown eventbus.
*/
default void shutdown() {
shutdown(null);
}
/**
* shutdown with callback handler
*
* @param handler Handler
*/
void shutdown(Handler> handler);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy