Packages

object MongoSink

Source
MongoSink.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MongoSink
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def deleteMany[T](collection: MongoCollection[T], options: DeleteOptions): Sink[Bson, CompletionStage[Done]]

    A Sink that will delete many documents as defined by a Bson filter query.

    A Sink that will delete many documents as defined by a Bson filter query.

    collection

    the mongo db collection to update.

    options

    options to apply to the operation

  2. def deleteMany[T](collection: MongoCollection[T]): Sink[Bson, CompletionStage[Done]]

    A Sink that will delete many documents as defined by a Bson filter query.

    A Sink that will delete many documents as defined by a Bson filter query.

    collection

    the mongo db collection to update.

  3. def deleteOne[T](collection: MongoCollection[T], options: DeleteOptions): Sink[Bson, CompletionStage[Done]]

    A Sink that will delete individual documents as defined by a Bson filter query.

    A Sink that will delete individual documents as defined by a Bson filter query.

    collection

    the mongo db collection to update.

    options

    options to apply to the operation

  4. def deleteOne[T](collection: MongoCollection[T]): Sink[Bson, CompletionStage[Done]]

    A Sink that will delete individual documents as defined by a Bson filter query.

    A Sink that will delete individual documents as defined by a Bson filter query.

    collection

    the mongo db collection to update.

  5. def insertMany[T](collection: MongoCollection[T], options: InsertManyOptions): Sink[List[T], CompletionStage[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

  6. def insertMany[T](collection: MongoCollection[T]): Sink[List[T], CompletionStage[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.

  7. def insertOne[T](collection: MongoCollection[T], options: InsertOneOptions): Sink[T, CompletionStage[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

  8. def insertOne[T](collection: MongoCollection[T]): Sink[T, CompletionStage[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.

  9. def replaceOne[T](collection: MongoCollection[T], options: ReplaceOptions): Sink[DocumentReplace[T], CompletionStage[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

  10. def replaceOne[T](collection: MongoCollection[T]): Sink[DocumentReplace[T], CompletionStage[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.

  11. def updateMany[T](collection: MongoCollection[T], options: UpdateOptions): Sink[DocumentUpdate, CompletionStage[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

  12. def updateMany[T](collection: MongoCollection[T]): Sink[DocumentUpdate, CompletionStage[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.

  13. def updateOne[T](collection: MongoCollection[T], options: UpdateOptions): Sink[DocumentUpdate, CompletionStage[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

  14. def updateOne[T](collection: MongoCollection[T]): Sink[DocumentUpdate, CompletionStage[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.