-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathFetchRequest.js
37 lines (33 loc) · 1.44 KB
/
FetchRequest.js
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
32
33
34
35
36
37
var BufferMaker = require('buffermaker');
var Request = require('./Request');
var FetchRequest = function(offset, topic, partition, maxMessageSize) {
this.offset = offset;
this.topic = topic;
this.partition = partition;
this.maxMessageSize = maxMessageSize;
};
/*
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/ REQUEST HEADER /
/ /
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| OFFSET |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MAX_SIZE |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
REQUEST_HEADER = See REQUEST_HEADER above
OFFSET = int64 // Offset in topic and partition to start from
MAX_SIZE = int32 // MAX_SIZE of the message set to return
*/
FetchRequest.prototype.toBytes = function(){
var body = new BufferMaker()
.Int64BE(this.offset)
.UInt32BE(this.maxMessageSize)
.make();
var req = new Request(this.topic, this.partition, Request.Types.FETCH, body);
return req.toBytes();
};
module.exports = FetchRequest;