Packages

class MongoService extends MongoClient

Linear Supertypes
MongoClient, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MongoService
  2. MongoClient
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MongoService(_asJava: AnyRef)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def asJava: AnyRef
    Definition Classes
    MongoClient
  6. def bulkWrite(collection: String, operations: Buffer[BulkOperation], resultHandler: Handler[AsyncResult[MongoClientBulkWriteResult]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  7. def bulkWriteFuture(collection: String, operations: Buffer[BulkOperation]): Future[MongoClientBulkWriteResult]
    Definition Classes
    MongoServiceMongoClient
  8. def bulkWriteWithOptions(collection: String, operations: Buffer[BulkOperation], bulkWriteOptions: BulkWriteOptions, resultHandler: Handler[AsyncResult[MongoClientBulkWriteResult]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  9. def bulkWriteWithOptionsFuture(collection: String, operations: Buffer[BulkOperation], bulkWriteOptions: BulkWriteOptions): Future[MongoClientBulkWriteResult]
    Definition Classes
    MongoServiceMongoClient
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  11. def close(): Unit
    Definition Classes
    MongoServiceMongoClient
  12. def count(collection: String, query: JsonObject, resultHandler: Handler[AsyncResult[Long]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  13. def countFuture(collection: String, query: JsonObject): Future[Long]
    Definition Classes
    MongoServiceMongoClient
  14. def createCollection(collectionName: String, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  15. def createCollectionFuture(collectionName: String): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  16. def createIndex(collection: String, key: JsonObject, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  17. def createIndexFuture(collection: String, key: JsonObject): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  18. def createIndexWithOptions(collection: String, key: JsonObject, options: IndexOptions, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  19. def createIndexWithOptionsFuture(collection: String, key: JsonObject, options: IndexOptions): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  20. def distinct(collection: String, fieldName: String, resultClassname: String, resultHandler: Handler[AsyncResult[JsonArray]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  21. def distinctBatch(arg0: String, arg1: String, arg2: String): ReadStream[JsonObject]
    Definition Classes
    MongoClient
  22. def distinctBatchWithQuery(arg0: String, arg1: String, arg2: String, arg3: JsonObject, arg4: Int): ReadStream[JsonObject]
    Definition Classes
    MongoClient
  23. def distinctBatchWithQuery(arg0: String, arg1: String, arg2: String, arg3: JsonObject): ReadStream[JsonObject]
    Definition Classes
    MongoClient
  24. def distinctFuture(collection: String, fieldName: String, resultClassname: String): Future[JsonArray]
    Definition Classes
    MongoServiceMongoClient
  25. def distinctWithQuery(collection: String, fieldName: String, resultClassname: String, query: JsonObject, resultHandler: Handler[AsyncResult[JsonArray]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  26. def distinctWithQueryFuture(collection: String, fieldName: String, resultClassname: String, query: JsonObject): Future[JsonArray]
    Definition Classes
    MongoServiceMongoClient
  27. def dropCollection(collection: String, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  28. def dropCollectionFuture(collection: String): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  29. def dropIndex(collection: String, indexName: String, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  30. def dropIndexFuture(collection: String, indexName: String): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  31. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  33. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  34. def find(collection: String, query: JsonObject, resultHandler: Handler[AsyncResult[Buffer[JsonObject]]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  35. def findBatch(arg0: String, arg1: JsonObject): ReadStream[JsonObject]
    Definition Classes
    MongoClient
  36. def findBatchWithOptions(arg0: String, arg1: JsonObject, arg2: FindOptions): ReadStream[JsonObject]
    Definition Classes
    MongoClient
  37. def findFuture(collection: String, query: JsonObject): Future[Buffer[JsonObject]]
    Definition Classes
    MongoServiceMongoClient
  38. def findOne(collection: String, query: JsonObject, fields: Option[JsonObject], resultHandler: Handler[AsyncResult[JsonObject]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  39. def findOneAndDelete(collection: String, query: JsonObject, resultHandler: Handler[AsyncResult[JsonObject]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  40. def findOneAndDeleteFuture(collection: String, query: JsonObject): Future[JsonObject]
    Definition Classes
    MongoServiceMongoClient
  41. def findOneAndDeleteWithOptions(collection: String, query: JsonObject, findOptions: FindOptions, resultHandler: Handler[AsyncResult[JsonObject]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  42. def findOneAndDeleteWithOptionsFuture(collection: String, query: JsonObject, findOptions: FindOptions): Future[JsonObject]
    Definition Classes
    MongoServiceMongoClient
  43. def findOneAndReplace(collection: String, query: JsonObject, replace: JsonObject, resultHandler: Handler[AsyncResult[JsonObject]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  44. def findOneAndReplaceFuture(collection: String, query: JsonObject, replace: JsonObject): Future[JsonObject]
    Definition Classes
    MongoServiceMongoClient
  45. def findOneAndReplaceWithOptions(collection: String, query: JsonObject, update: JsonObject, findOptions: FindOptions, updateOptions: UpdateOptions, resultHandler: Handler[AsyncResult[JsonObject]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  46. def findOneAndReplaceWithOptionsFuture(collection: String, query: JsonObject, update: JsonObject, findOptions: FindOptions, updateOptions: UpdateOptions): Future[JsonObject]
    Definition Classes
    MongoServiceMongoClient
  47. def findOneAndUpdate(collection: String, query: JsonObject, update: JsonObject, resultHandler: Handler[AsyncResult[JsonObject]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  48. def findOneAndUpdateFuture(collection: String, query: JsonObject, update: JsonObject): Future[JsonObject]
    Definition Classes
    MongoServiceMongoClient
  49. def findOneAndUpdateWithOptions(collection: String, query: JsonObject, update: JsonObject, findOptions: FindOptions, updateOptions: UpdateOptions, resultHandler: Handler[AsyncResult[JsonObject]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  50. def findOneAndUpdateWithOptionsFuture(collection: String, query: JsonObject, update: JsonObject, findOptions: FindOptions, updateOptions: UpdateOptions): Future[JsonObject]
    Definition Classes
    MongoServiceMongoClient
  51. def findOneFuture(collection: String, query: JsonObject, fields: Option[JsonObject]): Future[JsonObject]
    Definition Classes
    MongoServiceMongoClient
  52. def findWithOptions(collection: String, query: JsonObject, options: FindOptions, resultHandler: Handler[AsyncResult[Buffer[JsonObject]]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  53. def findWithOptionsFuture(collection: String, query: JsonObject, options: FindOptions): Future[Buffer[JsonObject]]
    Definition Classes
    MongoServiceMongoClient
  54. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  55. def getCollections(resultHandler: Handler[AsyncResult[Buffer[String]]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  56. def getCollectionsFuture(): Future[Buffer[String]]
    Definition Classes
    MongoServiceMongoClient
  57. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  58. def insert(collection: String, document: JsonObject, resultHandler: Handler[AsyncResult[String]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  59. def insertFuture(collection: String, document: JsonObject): Future[String]
    Definition Classes
    MongoServiceMongoClient
  60. def insertWithOptions(collection: String, document: JsonObject, writeOption: Option[WriteOption], resultHandler: Handler[AsyncResult[String]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  61. def insertWithOptionsFuture(collection: String, document: JsonObject, writeOption: Option[WriteOption]): Future[String]
    Definition Classes
    MongoServiceMongoClient
  62. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  63. def listIndexes(collection: String, resultHandler: Handler[AsyncResult[JsonArray]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  64. def listIndexesFuture(collection: String): Future[JsonArray]
    Definition Classes
    MongoServiceMongoClient
  65. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  66. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  67. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  68. def remove(collection: String, query: JsonObject, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  69. def removeDocument(collection: String, query: JsonObject, resultHandler: Handler[AsyncResult[MongoClientDeleteResult]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  70. def removeDocumentFuture(collection: String, query: JsonObject): Future[MongoClientDeleteResult]
    Definition Classes
    MongoServiceMongoClient
  71. def removeDocumentWithOptions(collection: String, query: JsonObject, writeOption: Option[WriteOption], resultHandler: Handler[AsyncResult[MongoClientDeleteResult]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  72. def removeDocumentWithOptionsFuture(collection: String, query: JsonObject, writeOption: Option[WriteOption]): Future[MongoClientDeleteResult]
    Definition Classes
    MongoServiceMongoClient
  73. def removeDocuments(collection: String, query: JsonObject, resultHandler: Handler[AsyncResult[MongoClientDeleteResult]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  74. def removeDocumentsFuture(collection: String, query: JsonObject): Future[MongoClientDeleteResult]
    Definition Classes
    MongoServiceMongoClient
  75. def removeDocumentsWithOptions(collection: String, query: JsonObject, writeOption: Option[WriteOption], resultHandler: Handler[AsyncResult[MongoClientDeleteResult]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  76. def removeDocumentsWithOptionsFuture(collection: String, query: JsonObject, writeOption: Option[WriteOption]): Future[MongoClientDeleteResult]
    Definition Classes
    MongoServiceMongoClient
  77. def removeFuture(collection: String, query: JsonObject): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  78. def removeOne(collection: String, query: JsonObject, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  79. def removeOneFuture(collection: String, query: JsonObject): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  80. def removeOneWithOptions(collection: String, query: JsonObject, writeOption: WriteOption, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  81. def removeOneWithOptionsFuture(collection: String, query: JsonObject, writeOption: WriteOption): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  82. def removeWithOptions(collection: String, query: JsonObject, writeOption: WriteOption, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  83. def removeWithOptionsFuture(collection: String, query: JsonObject, writeOption: WriteOption): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  84. def replace(collection: String, query: JsonObject, replace: JsonObject, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  85. def replaceDocuments(collection: String, query: JsonObject, replace: JsonObject, resultHandler: Handler[AsyncResult[MongoClientUpdateResult]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  86. def replaceDocumentsFuture(collection: String, query: JsonObject, replace: JsonObject): Future[MongoClientUpdateResult]
    Definition Classes
    MongoServiceMongoClient
  87. def replaceDocumentsWithOptions(collection: String, query: JsonObject, replace: JsonObject, options: UpdateOptions, resultHandler: Handler[AsyncResult[MongoClientUpdateResult]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  88. def replaceDocumentsWithOptionsFuture(collection: String, query: JsonObject, replace: JsonObject, options: UpdateOptions): Future[MongoClientUpdateResult]
    Definition Classes
    MongoServiceMongoClient
  89. def replaceFuture(collection: String, query: JsonObject, replace: JsonObject): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  90. def replaceWithOptions(collection: String, query: JsonObject, replace: JsonObject, options: UpdateOptions, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  91. def replaceWithOptionsFuture(collection: String, query: JsonObject, replace: JsonObject, options: UpdateOptions): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  92. def runCommand(commandName: String, command: JsonObject, resultHandler: Handler[AsyncResult[JsonObject]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  93. def runCommandFuture(commandName: String, command: JsonObject): Future[JsonObject]
    Definition Classes
    MongoServiceMongoClient
  94. def save(collection: String, document: JsonObject, resultHandler: Handler[AsyncResult[String]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  95. def saveFuture(collection: String, document: JsonObject): Future[String]
    Definition Classes
    MongoServiceMongoClient
  96. def saveWithOptions(collection: String, document: JsonObject, writeOption: Option[WriteOption], resultHandler: Handler[AsyncResult[String]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  97. def saveWithOptionsFuture(collection: String, document: JsonObject, writeOption: Option[WriteOption]): Future[String]
    Definition Classes
    MongoServiceMongoClient
  98. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  99. def toString(): String
    Definition Classes
    AnyRef → Any
  100. def update(collection: String, query: JsonObject, update: JsonObject, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  101. def updateCollection(collection: String, query: JsonObject, update: JsonObject, resultHandler: Handler[AsyncResult[MongoClientUpdateResult]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  102. def updateCollectionFuture(collection: String, query: JsonObject, update: JsonObject): Future[MongoClientUpdateResult]
    Definition Classes
    MongoServiceMongoClient
  103. def updateCollectionWithOptions(collection: String, query: JsonObject, update: JsonObject, options: UpdateOptions, resultHandler: Handler[AsyncResult[MongoClientUpdateResult]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  104. def updateCollectionWithOptionsFuture(collection: String, query: JsonObject, update: JsonObject, options: UpdateOptions): Future[MongoClientUpdateResult]
    Definition Classes
    MongoServiceMongoClient
  105. def updateFuture(collection: String, query: JsonObject, update: JsonObject): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  106. def updateWithOptions(collection: String, query: JsonObject, update: JsonObject, options: UpdateOptions, resultHandler: Handler[AsyncResult[Unit]]): MongoService
    Definition Classes
    MongoServiceMongoClient
  107. def updateWithOptionsFuture(collection: String, query: JsonObject, update: JsonObject, options: UpdateOptions): Future[Unit]
    Definition Classes
    MongoServiceMongoClient
  108. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  109. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  110. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from MongoClient

Inherited from AnyRef

Inherited from Any

Ungrouped