-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
encoding.go
31 lines (26 loc) · 973 Bytes
/
encoding.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package plog // import "go.opentelemetry.io/collector/pdata/plog"
// MarshalSizer is the interface that groups the basic Marshal and Size methods
type MarshalSizer interface {
Marshaler
Sizer
}
// Marshaler marshals pdata.Logs into bytes.
type Marshaler interface {
// MarshalLogs the given pdata.Logs into bytes.
// If the error is not nil, the returned bytes slice cannot be used.
MarshalLogs(ld Logs) ([]byte, error)
}
// Unmarshaler unmarshalls bytes into pdata.Logs.
type Unmarshaler interface {
// UnmarshalLogs the given bytes into pdata.Logs.
// If the error is not nil, the returned pdata.Logs cannot be used.
UnmarshalLogs(buf []byte) (Logs, error)
}
// Sizer is an optional interface implemented by the Marshaler,
// that calculates the size of a marshaled Logs.
type Sizer interface {
// LogsSize returns the size in bytes of a marshaled Logs.
LogsSize(ld Logs) int
}