Skip navigation links
C D F L M O P R S U 

C

countDocuments($this$countDocuments, filter) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Counts the number of documents in the collection according to the given options.
countDocuments($this$countDocuments, filter, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Counts the number of documents in the collection according to the given options.
createIndex($this$createIndex, key) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Creates an index.
createIndex($this$createIndex, key, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Creates an index.

D

deleteMany($this$deleteMany, filter, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Removes all documents from the collection that match the given query filter. If no documents match, the collection is not modified.
deleteMany($this$deleteMany, filters, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Removes all documents from the collection that match the given query filter. If no documents match, the collection is not modified.
deleteOne($this$deleteOne, filter) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Removes at most one document from the collection that matches the given filter. If no documents match, the collection is not modified.
deleteOne($this$deleteOne, filters) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Removes at most one document from the collection that matches the given filter. If no documents match, the collection is not modified.
deleteOneById($this$deleteOneById, id) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Removes at most one document from the id parameter. If no documents match, the collection is not modified.
dropIndexOfKeys($this$dropIndexOfKeys, keys) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Drops the index given the keys used to create it.

F

find($this$find, filter) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Finds all documents that match the filter in the collection.
find($this$find, filters) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Finds all documents in the collection.
findOne($this$findOne, filter) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Finds the first document that match the filter in the collection.
findOne($this$findOne, filter) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Finds the first document that match the filter in the collection.
findOne($this$findOne, filters) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Finds the first document that match the filters in the collection.
findOneAndDelete($this$findOneAndDelete, filter, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Atomically find a document and remove it.
findOneAndReplace($this$findOneAndReplace, filter, replacement, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Atomically find a document and replace it.
findOneAndUpdate($this$findOneAndUpdate, filter, update, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Atomically find a document and update it.
findOneById($this$findOneById, id) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Finds the document that match the id parameter.
forEach($this$forEach, listener) - Static method in class org.litote.kmongo.reactivestreams.PublishersKt
Listen each element from the publisher.

L

listenList($this$listenList, listener) - Static method in class org.litote.kmongo.reactivestreams.PublishersKt
Listen list of not null elements from the publisher.
listenSingle($this$listenSingle, listener) - Static method in class org.litote.kmongo.reactivestreams.PublishersKt
Listen one element from the publisher.

M

MongoCollectionsKt - Class in org.litote.kmongo.reactivestreams
 
MongoCollectionsKt() - Constructor for class org.litote.kmongo.reactivestreams.MongoCollectionsKt
 
MongoDatabasesKt - Class in org.litote.kmongo.reactivestreams
 
MongoDatabasesKt() - Constructor for class org.litote.kmongo.reactivestreams.MongoDatabasesKt
 

O

org.litote.kmongo.reactivestreams - package org.litote.kmongo.reactivestreams
 

P

PublishersKt - Class in org.litote.kmongo.reactivestreams
 
PublishersKt() - Constructor for class org.litote.kmongo.reactivestreams.PublishersKt
 

R

replaceOne($this$replaceOne, filter, replacement, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Replace a document in the collection according to the specified arguments.
replaceOneById($this$replaceOneById, id, replacement) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Replace a document in the collection according to the specified arguments.
replaceOneById($this$replaceOneById, id, replacement, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Replace a document in the collection according to the specified arguments.
replaceOneWithoutId($this$replaceOneWithoutId, filter, replacement, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Replace a document in the collection according to the specified arguments. The id of the provided document is not used, in order to avoid updated id error. You may have to use UpdateResult.getUpsertedId in order to retrieve the generated id.

S

save($this$save, document) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Save the document. If the document has no id field, or if the document has a null id value, insert the document. Otherwise, call replaceOneById with upsert true.

U

updateMany($this$updateMany, filter, update, updateOptions) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Update all documents in the collection according to the specified arguments.
updateMany($this$updateMany, filter, updates, updateOptions) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Update all documents in the collection according to the specified arguments.
updateOne($this$updateOne, filter, update, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Update a single document in the collection according to the specified arguments.
updateOne($this$updateOne, filter, update, options, updateOnlyNotNullProperties) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Update a single document in the collection according to the specified arguments.
updateOne($this$updateOne, filter, target, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Update a single document in the collection according to the specified arguments.
updateOneById($this$updateOneById, id, update, options) - Static method in class org.litote.kmongo.reactivestreams.MongoCollectionsKt
Update a single document in the collection according to the specified arguments.
C D F L M O P R S U 
Skip navigation links