Package-level declarations

Types

Link copied to clipboard
class EncodingSchema(val serializersModule: SerializersModule, val types: Map<String, Type>) : BinaryFormat

A BinaryFormat for encoding and decoding protobuf messages. Applications should obtain instances of this class using the encodingSchema function.

Link copied to clipboard
class Enum(val name: Identifier, val values: List<EnumValue>) : Type
Link copied to clipboard
class Field(val name: Identifier, val encoding: FieldEncoding, val number: FieldNumber, val rule: FieldRule = FieldRule.Singular, val encoder: (WireBuffer) -> Encoder, val decoder: (List<WireValue>) -> Decoder) : Member
Link copied to clipboard
Link copied to clipboard
sealed interface Member
Link copied to clipboard
class Message(val name: Identifier, val members: List<Member> = emptyList(), val nestedTypes: List<Type> = emptyList(), val encoder: (output: WireBuffer, fieldNumber: FieldNumber?, encodeZeroValue: Boolean) -> HybridEncoder, val decoder: (value: List<WireValue>) -> HybridDecoder) : Type
Link copied to clipboard
class OneOf(val name: Identifier, val fields: List<Field>) : Member
Link copied to clipboard
@SerialInfo
@Target(allowedTargets = [AnnotationTarget.PROPERTY])
annotation class ProtoDefaultEnumValue
Link copied to clipboard
@SerialInfo
@Target(allowedTargets = [AnnotationTarget.PROPERTY])
annotation class ProtoIntegerType(val type: IntegerType)
Link copied to clipboard
@SerialInfo
@Target(allowedTargets = [AnnotationTarget.PROPERTY])
annotation class ProtoListItem(val integerType: IntegerType = IntegerType.Default, val messageName: String = "", val fieldName: String = "value", val fieldNumber: Int = 1)
Link copied to clipboard
@SerialInfo
@Target(allowedTargets = [AnnotationTarget.PROPERTY])
annotation class ProtoMapEntry(val messageName: String = "", val keyName: String = "key", val keyNumber: Int = 1, val keyIntegerType: IntegerType = IntegerType.Default, val valueName: String = "value", val valueNumber: Int = 2, val valueIntegerType: IntegerType = IntegerType.Default)
Link copied to clipboard
annotation class ProtoNumber(val number: Int)
Link copied to clipboard
sealed class Type

Functions

Link copied to clipboard

Converts an EncodingSchema to a SchemaDocument, which may be serialized using SchemaDocumentWriter, validated using validate, and compared with other SchemaDocuments.