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

examples.SomeDatabaseService Maven / Gradle / Ivy

The newest version!
package examples;

import io.vertx.codegen.annotations.Fluent;
import io.vertx.codegen.annotations.ProxyGen;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import io.vertx.core.Vertx;
import io.vertx.core.json.JsonObject;

/**
 * @author Clement Escoffier
 */
@ProxyGen
@VertxGen
public interface SomeDatabaseService {

  void save(String collection, JsonObject document, Handler> result);

  @Fluent
  SomeDatabaseService foo(String collection, JsonObject document, Handler> result);

  static SomeDatabaseService createProxy(Vertx vertx, String address) {
    return null;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy