package
2.96.0
Repository: https://github.com/palantir/conjure-go-runtime.git
Documentation: pkg.go.dev

# Functions

GZIP wraps an existing Codec and uses gzip for compression and decompression.
Snappy wraps an existing Codec and uses snappy with no-framing for compression and decompression using github.com/golang/snappy.
YAML codec encodes and decodes YAML using gopkg.in/yaml.v2.
ZLIB wraps an existing Codec and uses zlib for compression and decompression.

# Variables

Binary codec encodes and decodes binary requests and responses.
FormURLEncoded (de)serializes Form parameters.
JSON codec encodes and decodes JSON requests and responses using github.com/palantir/pkg/safejson.
Plain implements a text/plain codec.
Protobuf codec encodes and decodes protobuf requests and responses using google.golang.org/protobuf.

# Interfaces

Codec embeds both Decoder and Encoder.
A Decoder decodes a serialized message.
An Encoder serializes a message.