Packages

object CouchbaseFlow

Java API: Factory methods for Couchbase flows.

Source
CouchbaseFlow.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CouchbaseFlow
  2. AnyRef
  3. 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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def bytesFromId(sessionSettings: CouchbaseSessionSettings, bucketName: String, scopeName: String, collectionName: String): Flow[String, CouchbaseDocument[Array[Byte]], NotUsed]

    Create a flow to query Couchbase for by id and emit JsonDocuments.

  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. def delete(sessionSettings: CouchbaseSessionSettings, removeOptions: RemoveOptions, bucketName: String, scopeName: String, collectionName: String): Flow[String, String, NotUsed]

    Create a flow to delete documents from Couchbase by id.

    Create a flow to delete documents from Couchbase by id. Emits the same id.

  8. def delete(sessionSettings: CouchbaseSessionSettings, bucketName: String, scopeName: String, collectionName: String): Flow[String, String, NotUsed]

    Create a flow to delete documents from Couchbase by id.

    Create a flow to delete documents from Couchbase by id. Emits the same id.

  9. def deleteWithResult(sessionSettings: CouchbaseSessionSettings, removeOptions: RemoveOptions, bucketName: String, scopeName: String, collectionName: String): Flow[String, CouchbaseDeleteResult, NotUsed]

    Create a flow to delete documents from Couchbase by id and emit operation outcome containing the same id.

  10. def deleteWithResult(sessionSettings: CouchbaseSessionSettings, bucketName: String, scopeName: String, collectionName: String): Flow[String, CouchbaseDeleteResult, NotUsed]

    Create a flow to delete documents from Couchbase by id and emit operation outcome containing the same id.

  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. def fromId(sessionSettings: CouchbaseSessionSettings, bucketName: String, scopeName: String, collectionName: String): Flow[String, CouchbaseDocument[JsonValue], NotUsed]

    Create a flow to query Couchbase for by id and emit JsonDocuments.

  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def replace[T](sessionSettings: CouchbaseSessionSettings, replaceOptions: ReplaceOptions, bucketName: String, scopeName: String, collectionName: String): Flow[CouchbaseDocument[T], Done, NotUsed]

    Create a flow to replace a Couchbase JsonDocument.

  21. def replace[T](sessionSettings: CouchbaseSessionSettings, bucketName: String, scopeName: String, collectionName: String): Flow[CouchbaseDocument[T], Done, NotUsed]

    Create a flow to replace a Couchbase JsonDocument.

  22. def replaceWithResult[T](sessionSettings: CouchbaseSessionSettings, replaceOptions: ReplaceOptions, bucketName: String, scopeName: String, collectionName: String): Flow[CouchbaseDocument[T], CouchbaseWriteResult, NotUsed]

    Create a flow to replace a Couchbase JsonDocument.

  23. def replaceWithResult[T](sessionSettings: CouchbaseSessionSettings, bucketName: String, scopeName: String, collectionName: String): Flow[CouchbaseDocument[T], CouchbaseWriteResult, NotUsed]

    Create a flow to replace a Couchbase JsonDocument.

  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. def upsert[T](sessionSettings: CouchbaseSessionSettings, upsertOptions: UpsertOptions, bucketName: String, scopeName: String, collectionName: String): Flow[CouchbaseDocument[T], Done, NotUsed]

    Create a flow to update or insert a Couchbase document.

  27. def upsert[T](sessionSettings: CouchbaseSessionSettings, bucketName: String, scopeName: String, collectionName: String): Flow[CouchbaseDocument[T], Done, NotUsed]

    Create a flow to update or insert a Couchbase document.

  28. def upsertWithResult[T](sessionSettings: CouchbaseSessionSettings, upsertOptions: UpsertOptions, bucketName: String, scopeName: String, collectionName: String): Flow[CouchbaseDocument[T], CouchbaseWriteResult, NotUsed]

    Create a flow to update or insert a Couchbase document of the given class and emit a result so that write failures can be handled in-stream.

  29. def upsertWithResult[T](sessionSettings: CouchbaseSessionSettings, bucketName: String, scopeName: String, collectionName: String): Flow[CouchbaseDocument[T], CouchbaseWriteResult, NotUsed]

    Create a flow to update or insert a Couchbase document of the given class and emit a result so that write failures can be handled in-stream.

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

Deprecated Value Members

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

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped