Packages

object View extends GeneratedMessageCompanion[View]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. View
  2. GeneratedMessageCompanion
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Query(query: String = "", transformResults: Boolean = false, streamUpdates: Boolean = false, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[Query] with Product with Serializable

    query

    A query that gets executed when this call is executed. This query is used to know how the view should be indexed.

    transformResults

    Whether query results should be passed to the user service for further processing before being returned to the client. By default (false), the user service does not process query results.

    streamUpdates

    If enabled, initially, the normal query results are returned, but the stream does not complete once the full result has been streamed, instead the stream is kept open and updates and new entries added to the view are streamed. Can only be used for (stream) return values.

    Annotations
    @SerialVersionUID()
  2. final case class Update(table: String = "", transformUpdates: Boolean = false, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[Update] with Product with Serializable

    table

    Indicates the name of the table that this processing method will persist to, or that the query that is indexing will use. The return type of this call specifies the schema of the persisted value. Any defined queries that select from this table will be selecting over this schema.

    transformUpdates

    Whether messages should automatically be persisted without further processing. If false, received messages will be persisted at the key given by the CloudEvents subject (that is, the entity key) without passing them to the gRPC service call. That is, the user service does not need to implement this service call. This flag is ignored if the method input parameter is different than the output, since a transformation is necessary. For matching parameters (and methods marked with eventing.in.handle_deletes = true) the default value (false) can be overridden for an additional message processing.

    Annotations
    @SerialVersionUID()
  3. sealed trait UpdateOrQuery extends GeneratedOneof
  4. type ValueType = View
    Definition Classes
    GeneratedMessageCompanion
  5. implicit class ViewLens[UpperPB] extends ObjectLens[UpperPB, View]

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 val JSON_SCHEMA_FIELD_NUMBER: Int(6)
  5. final val QUERY_FIELD_NUMBER: Int(2)
  6. final val UPDATE_FIELD_NUMBER: Int(1)
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. lazy val defaultInstance: View
    Definition Classes
    View → GeneratedMessageCompanion
  10. def enumCompanionForField(field: FieldDescriptor): GeneratedEnumCompanion[_]
    Definition Classes
    GeneratedMessageCompanion
  11. def enumCompanionForFieldNumber(__fieldNumber: Int): GeneratedEnumCompanion[_]
    Definition Classes
    View → GeneratedMessageCompanion
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def fromAscii(s: String): View
    Definition Classes
    GeneratedMessageCompanion
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def javaDescriptor: Descriptor
    Definition Classes
    View → GeneratedMessageCompanion
  19. def merge(a: View, input: CodedInputStream): View
    Definition Classes
    GeneratedMessageCompanion
  20. implicit def messageCompanion: GeneratedMessageCompanion[View]
  21. def messageCompanionForField(field: FieldDescriptor): GeneratedMessageCompanion[_]
    Definition Classes
    GeneratedMessageCompanion
  22. def messageCompanionForFieldNumber(__number: Int): GeneratedMessageCompanion[_]
    Definition Classes
    View → GeneratedMessageCompanion
  23. implicit def messageReads: Reads[View]
    Definition Classes
    View → GeneratedMessageCompanion
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. lazy val nestedMessagesCompanions: Seq[GeneratedMessageCompanion[_ <: GeneratedMessage]]
    Definition Classes
    View → GeneratedMessageCompanion
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. def of(updateOrQuery: UpdateOrQuery, jsonSchema: Option[json_schema.JsonSchema]): View
  29. def parseDelimitedFrom(input: InputStream): Option[View]
    Definition Classes
    GeneratedMessageCompanion
  30. def parseDelimitedFrom(input: CodedInputStream): Option[View]
    Definition Classes
    GeneratedMessageCompanion
  31. def parseFrom(_input__: CodedInputStream): View
    Definition Classes
    View → GeneratedMessageCompanion
  32. def parseFrom(s: Array[Byte]): View
    Definition Classes
    GeneratedMessageCompanion
  33. def parseFrom(input: InputStream): View
    Definition Classes
    GeneratedMessageCompanion
  34. def scalaDescriptor: Descriptor
    Definition Classes
    View → GeneratedMessageCompanion
  35. def streamFromDelimitedInput(input: InputStream): Stream[View]
    Definition Classes
    GeneratedMessageCompanion
  36. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  37. def toByteArray(a: View): Array[Byte]
    Definition Classes
    GeneratedMessageCompanion
  38. def toString(): String
    Definition Classes
    AnyRef → Any
  39. def validate(s: Array[Byte]): Try[View]
    Definition Classes
    GeneratedMessageCompanion
  40. def validateAscii(s: String): Either[TextFormatError, View]
    Definition Classes
    GeneratedMessageCompanion
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  44. object Query extends GeneratedMessageCompanion[Query]
  45. object Update extends GeneratedMessageCompanion[Update]
  46. object UpdateOrQuery extends Serializable

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 Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped