Task: Updated the library for client tunnel and removed logs from write chunk and check on callback and chunks data that recieve and send
This commit is contained in:
parent
34bb3bf730
commit
596b99a99a
8
lib.js
8
lib.js
@ -7,14 +7,14 @@ class TunnelRequest extends stream.Readable {
|
|||||||
this._requestId = requestId;
|
this._requestId = requestId;
|
||||||
|
|
||||||
const onRequestPipe = (requestId, data) => {
|
const onRequestPipe = (requestId, data) => {
|
||||||
console.log("Res pipe size", data.length)
|
console.log("Res pipe size", data.length);
|
||||||
if (this._requestId === requestId) {
|
if (this._requestId === requestId) {
|
||||||
this.push(data);
|
this.push(data);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onRequestPipes = (requestId, data) => {
|
const onRequestPipes = (requestId, data) => {
|
||||||
console.log("Res pipes size", data.length)
|
// console.log("Res pipes size", data.length)
|
||||||
if (this._requestId === requestId) {
|
if (this._requestId === requestId) {
|
||||||
data.forEach((chunk) => {
|
data.forEach((chunk) => {
|
||||||
this.push(chunk);
|
this.push(chunk);
|
||||||
@ -108,14 +108,16 @@ class TunnelResponse extends stream.Duplex {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_write(chunk, encoding, callback) {
|
_write(chunk, encoding, callback) {
|
||||||
console.log("Res Write Chunk: ", chunk.length);
|
console.log("Res Write Chunk: ", chunk.length, encoding);
|
||||||
this._socket.emit("response-pipe", this._responseId, chunk);
|
this._socket.emit("response-pipe", this._responseId, chunk);
|
||||||
this._socket.io.engine.once("drain", () => {
|
this._socket.io.engine.once("drain", () => {
|
||||||
|
console.log("hello = ", "callback...")
|
||||||
callback();
|
callback();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
_writev(chunks, callback) {
|
_writev(chunks, callback) {
|
||||||
|
console.log("Res Write Chunks: ", chunks.length);
|
||||||
this._socket.emit("response-pipes", this._responseId, chunks);
|
this._socket.emit("response-pipes", this._responseId, chunks);
|
||||||
this._socket.io.engine.once("drain", () => {
|
this._socket.io.engine.once("drain", () => {
|
||||||
callback();
|
callback();
|
||||||
|
Loading…
Reference in New Issue
Block a user