27 lines
678 B
Go
Executable File
27 lines
678 B
Go
Executable File
package payload
|
|
|
|
import "git.marketally.com/tutus-one/tutus-chain/pkg/io"
|
|
|
|
// MaxSize is the maximum payload size in decompressed form.
|
|
const MaxSize = 0x02000000
|
|
|
|
// Payload is anything that can be binary encoded/decoded.
|
|
type Payload interface {
|
|
io.Serializable
|
|
}
|
|
|
|
// NullPayload is a dummy payload with no fields.
|
|
type NullPayload struct {
|
|
}
|
|
|
|
// NewNullPayload returns zero-sized stub payload.
|
|
func NewNullPayload() NullPayload {
|
|
return NullPayload{}
|
|
}
|
|
|
|
// DecodeBinary implements the Serializable interface.
|
|
func (p NullPayload) DecodeBinary(r *io.BinReader) {}
|
|
|
|
// EncodeBinary implements the Serializable interface.
|
|
func (p NullPayload) EncodeBinary(w *io.BinWriter) {}
|