package protobuf
- Alphabetic
- Public
- Protected
Type Members
- final case class BigDecimal(scale: Int, intVal: BigInteger, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[BigDecimal] with Product with Serializable
A BigDecimal encoded as scale with BigInteger value
A BigDecimal encoded as scale with BigInteger value
- Annotations
- @SerialVersionUID()
- final case class BigInteger(value: ByteString, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[BigInteger] with Product with Serializable
A BigInteger bytes representation
A BigInteger bytes representation
- Annotations
- @SerialVersionUID()
- final class EnumProtoType[P <: GeneratedEnum, E <: EnumEntry] extends ProtoType[E]
- final class EnumProtoTypePartiallyApplied[P <: GeneratedEnum] extends AnyVal
- final class EnumeratumEnumException extends RuntimeException
- sealed trait LowPriorityProtoTypes extends AnyRef
- final case class Optional(value: Option[Any] = _root_.scala.None, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[Optional] with Product with Serializable
Optional is a scala.Option like type representing either value or null.
Optional is a scala.Option like type representing either value or null. Untyped due to absence of generic in protocol buffers
- Annotations
- @SerialVersionUID()
- trait ProtoType[A] extends AnyRef
Typeclass allowing conversion to protocol buffers supported type
Typeclass allowing conversion to protocol buffers supported type
- A
value type
- Annotations
- @implicitNotFound()
- class ProtobufPayloadException extends Exception
Thrown in case of deserialization errors
- final case class Result(result: Result.Result = zio.temporal.protobuf.Result.Result.Empty, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[Result] with Product with Serializable
Result is a scala.Either like type representing either error or some value.
Result is a scala.Either like type representing either error or some value. Untyped due to absence of generic in protocol buffers
- Annotations
- @SerialVersionUID()
- class ScalapbPayloadConverter extends PayloadConverter
Used to deserialize protobuf generated types
- final case class UUID(mostSignificantBits: Long, leastSignificantBits: Long, unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[UUID] with Product with Serializable
A UUID, encoded in accordance with section 4.1.2 of RFC 4122.
A UUID, encoded in accordance with section 4.1.2 of RFC 4122.
- Annotations
- @SerialVersionUID()
- final case class ZUnit(unknownFields: UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty) extends GeneratedMessage with Updatable[ZUnit] with Product with Serializable
Empty message which should be used as a result type for activities and workflows with no return value
Empty message which should be used as a result type for activities and workflows with no return value
- Annotations
- @SerialVersionUID()
Value Members
- object BigDecimal extends GeneratedMessageCompanion[BigDecimal]
- object BigInteger extends GeneratedMessageCompanion[BigInteger]
- object EnumProtoType
Provides a conversion between scalapb generated enums and enumeratum It's an optional dependency which won't be added to the classpath unless you use it
- object Optional extends GeneratedMessageCompanion[Optional]
- object ProtoType extends LowPriorityProtoTypes
- object ProtobufDataConverter
- object Result extends GeneratedMessageCompanion[Result]
- object ScalapbPayloadConverter
- object UUID extends GeneratedMessageCompanion[UUID]
- object ZUnit extends GeneratedMessageCompanion[ZUnit]
- object ZioTemporalProto extends GeneratedFileObject
- object syntax