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

as.leap.vertx.rpc.RPCServer Maven / Gradle / Ivy

There is a newer version: 3.3.8
Show newest version
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