examples.SomeDatabaseService Maven / Gradle / Ivy
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