Results 11 comments of Benjamin Hon

is this working? i cant seem to add an image source, keeps saying that source id not found

Hi victor, yep, its only 1 client. Yea there is no way that i can ensure that END happens before CLOSE, as the device might crash or terminated without closing...

Hmm it seems the problem seems to be the piping function not disassociating itself properly when the socket ENDS or CLOSES when socket ENDS of CLOSES, it seems all the...

Sorry, a correction, ``` socket.on('close', () => clientStream.destroy()) ``` does indeed remove the 'drain' listener from the destination. I had a look at the source code for the pipeStream function...

On the client do the following many times, after 11 times there will be a warning for 'drain' listener leaks ``` nc 192.168.123.123 9900 CTRL+C nc 192.168.123.123 9900 CTRL+C nc...

Hmm yea my mainStream is always processing data, it is never consumed as i need to continually process data with it.

Hmm, so far the data seems to be processed in time. However, i use batchWithTimeOrCount. Here is whats done to the mainstream. ``` mainJSONStream = mainStream .split() .map(parseJSON) .reject (x)...

Hmm nope i am using v2.7.1 ``` var mainStream = h(); ``` ok let me try that

im trying to do this as well. Im a bit confused how to chain them together though. After kong delegate the authentication via oidc to keycloak 1 -> user types...