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. All

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  6. 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

  7. 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.

  8. 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

  9. 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.

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. 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

  15. 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.

  16. 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

  17. 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.

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. 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

  25. 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.

  26. def updateOne[T](collection: MongoCollection[T], options: UpdateOptions): Sink[DocumentUpdate, CompletionStage[Done]]

    A Sink that will update documents as defined by a akka.stream.alpakka.mongodb.DocumentUpdate.

    A Sink that will update documents as defined by a akka.stream.alpakka.mongodb.DocumentUpdate.

    collection

    the mongo db collection to update.

    options

    options to apply to the operation

  27. def updateOne[T](collection: MongoCollection[T]): Sink[DocumentUpdate, CompletionStage[Done]]

    A Sink that will update documents as defined by a akka.stream.alpakka.mongodb.DocumentUpdate.

    A Sink that will update documents as defined by a akka.stream.alpakka.mongodb.DocumentUpdate.

    collection

    the mongo db collection to update.

  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped