xml

package
v2.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 16, 2020 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Overview

Package xml holds the encoder/decoder implementation for `application/xml`.

Index

Constants

This section is empty.

Variables

View Source
var (
	// LatencyMs measures the latency in milliseconds for the CloudEvents xml data
	// codec methods.
	LatencyMs = stats.Float64("cloudevents.io/sdk-go/datacodec/xml/latency", "The latency in milliseconds for the CloudEvents xml data codec methods.", "ms")
)
View Source
var (
	// LatencyView is an OpenCensus view that shows data codec xml method latency.
	LatencyView = &view.View{
		Name:        "datacodec/xml/latency",
		Measure:     LatencyMs,
		Description: "The distribution of latency inside of the xml data codec for CloudEvents.",
		Aggregation: view.Distribution(0, .01, .1, 1, 10, 100, 1000, 10000),
		TagKeys:     observability.LatencyTags(),
	}
)

Functions

func Decode

func Decode(ctx context.Context, in, out interface{}) error

Decode takes `in` as []byte, or base64 string, normalizes in to unquoted and base64 decoded []byte if required, and then attempts to use xml.Unmarshal to convert those bytes to `out`. Returns and error if this process fails.

func Encode

func Encode(ctx context.Context, in interface{}) ([]byte, error)

Encode attempts to xml.Marshal `in` into bytes. Encode will inspect `in` and returns `in` unmodified if it is detected that `in` is already a []byte; Or xml.Marshal errors.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL