mirror of https://github.com/knative/docs.git
27 lines
1.0 KiB
Go
27 lines
1.0 KiB
Go
package binding
|
|
|
|
import "errors"
|
|
|
|
// Encoding enum specifies the type of encodings supported by binding interfaces
|
|
type Encoding int
|
|
|
|
const (
|
|
// Binary encoding as specified in https://github.com/cloudevents/spec/blob/master/spec.md#message
|
|
EncodingBinary Encoding = iota
|
|
// Structured encoding as specified in https://github.com/cloudevents/spec/blob/master/spec.md#message
|
|
EncodingStructured
|
|
// Message is an instance of EventMessage or it contains EventMessage nested (through MessageWrapper)
|
|
EncodingEvent
|
|
// When the encoding is unknown (which means that the message is a non-event)
|
|
EncodingUnknown
|
|
)
|
|
|
|
// Error to specify that or the Message is not an event or it is encoded with an unknown encoding
|
|
var ErrUnknownEncoding = errors.New("unknown Message encoding")
|
|
|
|
// ErrNotStructured returned by Message.Structured for non-structured messages.
|
|
var ErrNotStructured = errors.New("message is not in structured mode")
|
|
|
|
// ErrNotBinary returned by Message.Binary for non-binary messages.
|
|
var ErrNotBinary = errors.New("message is not in binary mode")
|