kmongo / org.litote.kmongo.rxjava2 / com.mongodb.reactivestreams.client.MongoCollection / replaceOneById

replaceOneById

fun <T : Any> MongoCollection<T>.replaceOneById(id: Any, replacement: T, options: ReplaceOptions = ReplaceOptions()): Maybe<UpdateResult> (source)

Replace a document in the collection according to the specified arguments.

Parameters

id - the object id

replacement - the replacement document

options - the options to apply to the replace operation

Return
the result of the replace one operation

fun <T : Any> MongoCollection<T>.replaceOneById(clientSession: ClientSession, id: Any, replacement: T, options: ReplaceOptions = ReplaceOptions()): Maybe<UpdateResult> (source)

Replace a document in the collection according to the specified arguments.

Parameters

clientSession - the client session

id - the object id

replacement - the replacement document

options - the options to apply to the replace operation

Return
the result of the replace one operation