Tabnine Logo
MongoService.removeDocuments
Code IndexAdd Tabnine to your IDE (free)

How to use
removeDocuments
method
in
io.vertx.ext.mongo.MongoService

Best Java code snippets using io.vertx.ext.mongo.MongoService.removeDocuments (Showing top 2 results out of 315)

origin: io.vertx/vertx-rx-java

public io.vertx.rxjava.ext.mongo.MongoService removeDocuments(String collection, JsonObject query, Handler<AsyncResult<MongoClientDeleteResult>> resultHandler) { 
 delegate.removeDocuments(collection, query, resultHandler);
 return this;
}
origin: io.vertx/vertx-lang-groovy

public static io.vertx.ext.mongo.MongoService removeDocuments(io.vertx.ext.mongo.MongoService j_receiver, java.lang.String collection, java.util.Map<String, Object> query, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.Map<String, Object>>> resultHandler) {
 io.vertx.core.impl.ConversionHelper.fromObject(j_receiver.removeDocuments(collection,
  query != null ? io.vertx.core.impl.ConversionHelper.toJsonObject(query) : null,
  resultHandler != null ? new io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientDeleteResult>>() {
  public void handle(io.vertx.core.AsyncResult<io.vertx.ext.mongo.MongoClientDeleteResult> ar) {
   resultHandler.handle(ar.map(event -> event != null ? io.vertx.core.impl.ConversionHelper.fromJsonObject(event.toJson()) : null));
  }
 } : null));
 return j_receiver;
}
public static io.vertx.ext.mongo.MongoService removeWithOptions(io.vertx.ext.mongo.MongoService j_receiver, java.lang.String collection, java.util.Map<String, Object> query, io.vertx.ext.mongo.WriteOption writeOption, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>> resultHandler) {
io.vertx.ext.mongoMongoServiceremoveDocuments

Popular methods of MongoService

  • bulkWrite
  • bulkWriteWithOptions
  • close
  • count
  • createEventBusProxy
    Create a proxy to a service that is deployed somewhere on the event bus
  • createIndex
  • createIndexWithOptions
  • distinct
  • distinctWithQuery
  • find
  • findOne
  • findOneAndDelete
  • findOne,
  • findOneAndDelete,
  • findOneAndDeleteWithOptions,
  • findOneAndReplace,
  • findOneAndReplaceWithOptions,
  • findOneAndUpdate,
  • findOneAndUpdateWithOptions,
  • findWithOptions,
  • insert,
  • insertWithOptions

Popular in Java

  • Making http post requests using okhttp
  • getSharedPreferences (Context)
  • getContentResolver (Context)
  • scheduleAtFixedRate (Timer)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now