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 ¶
Decode takes `in` as []byte. If Event sent the payload as base64, Decoder assumes that `in` is the decoded base64 byte array.
func DecodeObserved ¶
DecodeObserved calls Decode and records the result.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.