Packages

object MongoSink extends MongoSinkImpl

Companion object and factory for building a predefined MongoSink.

The current sinks available are (delete, insert, replace and update), all of them available for one and many elements at a time.

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

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. def apply[Doc](collection: MongoCollection[Doc]): MongoSink[Doc]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def deleteMany[Doc](collection: MongoCollection[Doc], deleteOptions: DeleteOptions = DefaultDeleteOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[Bson, Unit]

    Provides a sink implementation for MongoSingle.deleteMany that per each element removes all documents from the collection that matched the given query filter.

    Provides a sink implementation for MongoSingle.deleteMany that per each element removes all documents from the collection that matched the given query filter.

    Doc

    the type of the collection

    collection

    the abstraction to work with a determined MongoDB Collection

    deleteOptions

    the options to apply to the delete operation, it will use default ones in case it is not passed by the user.

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that expects query filters to apply the delete many operations.

    Definition Classes
    MongoSink → MongoSinkImpl
    See also

    com.mongodb.client.model.Filters

  8. def deleteManyPar[Doc](collection: MongoCollection[Doc], deleteOptions: DeleteOptions = DefaultDeleteOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[Seq[Bson], Unit]

    Provides a sink implementation for MongoSingle.deleteMany that per each element removes all documents from the collection that matched the given query filter.

    Provides a sink implementation for MongoSingle.deleteMany that per each element removes all documents from the collection that matched the given query filter. The sink requires a sequence of elements, whereas elements from a single sequence will be executed in parallel as a batch operation.

    Doc

    the type of the collection

    collection

    the abstraction to work with a determined MongoDB Collection

    deleteOptions

    the options to apply to the delete operation, it will use default ones in case it is not passed by the user.

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that expects query filter sequences to apply the delete many operations.

    Definition Classes
    MongoSink → MongoSinkImpl
    See also

    com.mongodb.client.model.Filters

  9. def deleteOne[Doc](collection: MongoCollection[Doc], deleteOptions: DeleteOptions = DefaultDeleteOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[Bson, Unit]

    Provides a sink implementation for MongoSingle.deleteOne that for each incoming element will remove at most one document from the collection that matches the given filter.

    Provides a sink implementation for MongoSingle.deleteOne that for each incoming element will remove at most one document from the collection that matches the given filter.

    Doc

    the type of the collection

    collection

    the abstraction to work with a determined MongoDB Collection

    deleteOptions

    the options to apply to all the delete operations, it will use default ones in case it is not passed by the user

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that expects query filters to apply the delete operations.

    Definition Classes
    MongoSink → MongoSinkImpl
    See also

    com.mongodb.client.model.Filters and com.mongodb.client.model.Updates

  10. def deleteOnePar[Doc](collection: MongoCollection[Doc], deleteOptions: DeleteOptions = DefaultDeleteOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[Seq[Bson], Unit]

    Provides a sink implementation for MongoSingle.deleteOne that consumes a sequence of elements.

    Provides a sink implementation for MongoSingle.deleteOne that consumes a sequence of elements. The elements inside a single sequence will be executed in parallel as a batch operation. For each incoming element will remove at most one document from the collection that matches the given filter.

    Doc

    the type of the collection

    collection

    the abstraction to work with a determined MongoDB Collection

    deleteOptions

    the options to apply to all the delete operations, it will use default ones in case it is not passed by the user

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that expects sequences of query filters to apply the delete operations.

    Definition Classes
    MongoSink → MongoSinkImpl
    See also

    com.mongodb.client.model.Filters and com.mongodb.client.model.Updates

  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def insertMany[Doc](collection: MongoCollection[Doc], insertManyOptions: InsertManyOptions = DefaultInsertManyOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[Seq[Doc], Unit]

    Provides a sink implementation for MongoSingle.insertMany that expects batches of documents to be inserted at once.

    Provides a sink implementation for MongoSingle.insertMany that expects batches of documents to be inserted at once. If the documents is missing an identifier, the driver should generate one.

    Doc

    the type of the collection

    collection

    the abstraction to work with the determined mongodb collection

    insertManyOptions

    the options to apply to the insert operation

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that expects documents in batches of type Doc to be inserted.

    Definition Classes
    MongoSink → MongoSinkImpl
  17. def insertOne[Doc](collection: MongoCollection[Doc], insertOneOptions: InsertOneOptions = DefaultInsertOneOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[Doc, Unit]

    Provides a sink implementation for MongoSingle.insertOne that expects documents to be passed and inserts them one by one.

    Provides a sink implementation for MongoSingle.insertOne that expects documents to be passed and inserts them one by one. If the document is missing an identifier, the driver should generate one.

    Doc

    the type of the collection and the incoming documents

    collection

    the abstraction to work with the determined mongodb collection

    insertOneOptions

    the options to apply all the insert operations

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that expects single documents of type Doc to be inserted.

    Definition Classes
    MongoSink → MongoSinkImpl
  18. def insertOnePar[Doc](collection: MongoCollection[Doc], insertOneOptions: InsertOneOptions = DefaultInsertOneOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[Seq[Doc], Unit]

    Provides a sink implementation for MongoSingle.insertOne that expects sequences of documents to be passed and inserts all documents from a single sequence in parallel as a batch operation.

    Provides a sink implementation for MongoSingle.insertOne that expects sequences of documents to be passed and inserts all documents from a single sequence in parallel as a batch operation. If the document is missing an identifier, the driver should generate one.

    Doc

    the type of the collection and the incoming documents

    collection

    the abstraction to work with the determined mongodb collection

    insertOneOptions

    the options to apply all the insert operations

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that expects documents in batches of type Doc to be inserted.

    Definition Classes
    MongoSink → MongoSinkImpl
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def replaceOne[Doc](collection: MongoCollection[Doc], replaceOptions: ReplaceOptions = DefaultReplaceOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[(Bson, Doc), Unit]

    Provides a sink implementation for MongoSingle.replaceOne that expects Tuple2 of a filter and the document replacement that for each element will execute the replace operation to a single filtered element.

    Provides a sink implementation for MongoSingle.replaceOne that expects Tuple2 of a filter and the document replacement that for each element will execute the replace operation to a single filtered element.

    Doc

    the type of the collection

    collection

    the abstraction to work with the determined mongodb collection

    replaceOptions

    the options to apply to the replace operation

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that expects a Tuple2 of a filter and a document of type Doc to be replaced.

    Definition Classes
    MongoSink → MongoSinkImpl
    See also

    com.mongodb.client.model.Filters If the documents is missing an identifier, the driver should generate one.

  24. def replaceOnePar[Doc](collection: MongoCollection[Doc], replaceOptions: ReplaceOptions = DefaultReplaceOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[Seq[(Bson, Doc)], Unit]

    Provides a sink implementation for MongoSingle.replaceOne that expects sequences of Tuple2 of a filter and the document replacement that for each element will execute the replace operation to a single filtered element.

    Provides a sink implementation for MongoSingle.replaceOne that expects sequences of Tuple2 of a filter and the document replacement that for each element will execute the replace operation to a single filtered element. All elements inside a single sequence will be executed in parallel as a batch operation.

    Doc

    the type of the collection

    collection

    the abstraction to work with the determined mongodb collection

    replaceOptions

    the options to apply to the replace operation

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that expects Tuple2 of filters and documents in batches of type Doc to be replaced.

    Definition Classes
    MongoSink → MongoSinkImpl
    See also

    com.mongodb.client.model.Filters If the documents is missing an identifier, the driver should generate one.

  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. def updateMany[Doc](collection: MongoCollection[Doc], updateOptions: UpdateOptions = DefaultUpdateOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[(Bson, Bson), Unit]

    Provides a sink implementation for MongoSingle.updateOne that expects Tuple2 of a filter and update that will be executed against all the filtered elements.

    Provides a sink implementation for MongoSingle.updateOne that expects Tuple2 of a filter and update that will be executed against all the filtered elements.

    Doc

    the type of the collection

    collection

    the abstraction to work with the determined mongodb collection

    updateOptions

    the options to apply to the update operation

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that per each element expects Tuple2 of a filter and the update in form of Bson.

    Definition Classes
    MongoSink → MongoSinkImpl
    See also

    com.mongodb.client.model.Filters and com.mongodb.client.model.Updates If the documents is missing an identifier, the driver should generate one.

  28. def updateManyPar[Doc](collection: MongoCollection[Doc], updateOptions: UpdateOptions = DefaultUpdateOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[Seq[(Bson, Bson)], Unit]

    Provides a sink implementation for MongoSingle.updateOne that expects sequences of Tuple2 of a filter and update that will be executed against all the filtered elements.

    Provides a sink implementation for MongoSingle.updateOne that expects sequences of Tuple2 of a filter and update that will be executed against all the filtered elements. All elements inside a single sequence will be executed in parallel as a batch operation.

    Doc

    the type of the collection

    collection

    the abstraction to work with the determined mongodb collection

    updateOptions

    the options to apply to the update operation

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that per each element expects a batch of Tuple2 of a filter and the update in form of Bson.

    Definition Classes
    MongoSink → MongoSinkImpl
    See also

    com.mongodb.client.model.Filters and com.mongodb.client.model.Updates If the documents is missing an identifier, the driver should generate one.

  29. def updateOne[Doc](collection: MongoCollection[Doc], updateOptions: UpdateOptions = DefaultUpdateOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[(Bson, Bson), Unit]

    Provides a sink implementation for MongoSingle.updateOne that expects Tuple2 of a filter and a update that will be executed against the single filtered element.

    Provides a sink implementation for MongoSingle.updateOne that expects Tuple2 of a filter and a update that will be executed against the single filtered element.

    Doc

    the type of the collection

    collection

    the abstraction to work with the determined mongodb collection

    updateOptions

    the options to apply to the update operation

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that per each element expects a Tuple2 of a filter and the update in form of Bson.

    Definition Classes
    MongoSink → MongoSinkImpl
    See also

    com.mongodb.client.model.Filters and com.mongodb.client.model.Updates If the documents is missing an identifier, the driver should generate one.

  30. def updateOnePar[Doc](collection: MongoCollection[Doc], updateOptions: UpdateOptions = DefaultUpdateOptions, retryStrategy: RetryStrategy = DefaultRetryStrategy): Consumer[Seq[(Bson, Bson)], Unit]

    Provides a sink implementation for MongoSingle.updateOne that expects sequences of Tuple2 of a filter and a update that will be executed against the single filtered element.

    Provides a sink implementation for MongoSingle.updateOne that expects sequences of Tuple2 of a filter and a update that will be executed against the single filtered element. All elements inside a single sequence will be executed in parallel as a batch operation.

    Doc

    the type of the collection

    collection

    the abstraction to work with the determined mongodb collection

    updateOptions

    the options to apply to the update operation

    retryStrategy

    defines the amount of retries and backoff delays for failed requests.

    returns

    a Consumer that per each element expects a batch of Tuple2 of a filter and the update in form of Bson.

    Definition Classes
    MongoSink → MongoSinkImpl
    See also

    com.mongodb.client.model.Filters and com.mongodb.client.model.Updates If the documents is missing an identifier, the driver should generate one.

  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from MongoSinkImpl

Inherited from AnyRef

Inherited from Any

Ungrouped