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

examples.SomeDatabaseService Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR3
Show 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
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 - 2025 Weber Informatics LLC | Privacy Policy