TextTL
Results
1
comments of
TextTL
If I have the read in the loop, it works. ``` int c; while ((c = tlsChannel.read(responseBuffer)) > 0) { responseBuffer.flip(); byte[] bytesFromBuffer = new byte[c]; responseBuffer.get(bytesFromBuffer); accumulatedData.write(bytesFromBuffer); responseBuffer.clear(); processAccumulatedData(accumulatedData);...