summaryrefslogtreecommitdiff
path: root/payload.go
blob: 4cfcb68cc3a719ab96884229bdc8e4a2c08c1c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package roadrunner

// Payload carries binary header and body to workers and
// back to the server.
type Payload struct {
	// Context represent payload context, might be omitted
	Context []byte

	// body contains binary payload to be processed by worker
	Body []byte
}

// String returns payload body as string
func (p *Payload) String() string {
	return string(p.Body)
}