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

examples.SomeDatabaseServiceImpl Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
package examples;

import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
import io.vertx.core.json.JsonObject;

/**
 * @author Clement Escoffier
 */
public class SomeDatabaseServiceImpl implements SomeDatabaseService {

  @Override
  public void save(String collection, JsonObject document, Handler> result) {

  }

  @Override
  public SomeDatabaseService foo(String collection, JsonObject document, Handler> result) {
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy