diff options
Diffstat (limited to 'payload.go')
-rw-r--r-- | payload.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,12 +1,12 @@ package roadrunner -// Payload carries binary header and body to workers and +// Payload carries binary header and body to stack 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 contains binary payload to be processed by WorkerProcess. Body []byte } |