final class WriteMessage[T, PT] extends AnyRef

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

Value Members

  1. val customMetadata: Map[String, String]
  2. def equals(other: Any): Boolean
    Definition Classes
    WriteMessage → AnyRef → Any
  3. def hashCode(): Int
    Definition Classes
    WriteMessage → AnyRef → Any
  4. val id: Option[String]
  5. val indexName: Option[String]
  6. val operation: Operation
  7. val passThrough: PT
  8. val source: Option[T]
  9. def toString(): String
    Definition Classes
    WriteMessage → AnyRef → Any
  10. val version: Option[Long]
  11. def withCustomMetadata(metadata: Map[String, String]): WriteMessage[T, PT]

    Java API: define custom metadata for this message.

    Java API: define custom metadata for this message. Fields should have the full metadata field name as key (including the "_" prefix if there is one)

  12. def withCustomMetadata(value: Map[String, String]): WriteMessage[T, PT]

    Scala API: define custom metadata for this message.

    Scala API: define custom metadata for this message. Fields should have the full metadata field name as key (including the "_" prefix if there is one)

  13. def withIndexName(value: String): WriteMessage[T, PT]
  14. def withPassThrough[PT2](value: PT2): WriteMessage[T, PT2]
  15. def withSource(value: T): WriteMessage[T, PT]
  16. def withVersion(value: Long): WriteMessage[T, PT]