It seems like the lookback only works if all the stdout is given in one chunk. Say I am parsing the input in real-time from the stdout...can the lookback be used if the messages come across the stdout callback below: ``` childProcess.stdout.on('data', data => { }) ```