object MongoSink
- Source
- MongoSink.scala
- Alphabetic
- By Inheritance
- MongoSink
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def deleteMany[T](collection: MongoCollection[T], options: DeleteOptions = DefaultDeleteOptions): Sink[Bson, Future[Done]]
A Sink that will delete many documents as defined by a Bson filter query.
- def deleteOne[T](collection: MongoCollection[T], options: DeleteOptions = DefaultDeleteOptions): Sink[Bson, Future[Done]]
A Sink that will delete individual documents as defined by a Bson filter query.
- def insertMany[T](collection: MongoCollection[T], options: InsertManyOptions = DefaultInsertManyOptions): Sink[Seq[T], Future[Done]]
A Sink that will insert batches of documents into a collection.
A Sink that will insert batches of documents into a collection.
- collection
mongo db collection to insert to.
- options
options to apply to the operation
- def insertOne[T](collection: MongoCollection[T], options: InsertOneOptions = DefaultInsertOneOptions): Sink[T, Future[Done]]
A Sink that will insert documents into a collection.
A Sink that will insert documents into a collection.
- collection
mongo db collection to insert to.
- options
options to apply to the operation
- def replaceOne[T](collection: MongoCollection[T], options: ReplaceOptions = DefaultReplaceOptions): Sink[DocumentReplace[T], Future[Done]]
A Sink that will replace document as defined by a pekko.stream.connectors.mongodb.DocumentReplace.
A Sink that will replace document as defined by a pekko.stream.connectors.mongodb.DocumentReplace.
- collection
the mongo db collection to update.
- options
options to apply to the operation
- def updateMany[T](collection: MongoCollection[T], options: UpdateOptions = DefaultUpdateOptions): Sink[DocumentUpdate, Future[Done]]
A Sink that will update many documents as defined by a DocumentUpdate.
A Sink that will update many documents as defined by a DocumentUpdate.
- collection
the mongo db collection to update.
- options
options to apply to the operation
- def updateOne[T](collection: MongoCollection[T], options: UpdateOptions = DefaultUpdateOptions): Sink[DocumentUpdate, Future[Done]]
A Sink that will update documents as defined by a pekko.stream.connectors.mongodb.DocumentUpdate.
A Sink that will update documents as defined by a pekko.stream.connectors.mongodb.DocumentUpdate.
- collection
the mongo db collection to update.
- options
options to apply to the operation