5960616263646566676869
} } void notifyListener(int numBytes) throws IOException{ if( listener.isCancelled() ) { throw new CancelledException(); } bytesSinceLastNotify += numBytes; if (bytesSinceLastNotify < 1000) { return; }
6061626364656667686970
} void notifyListener(int numBytes) throws IOException{ listener.onRead(numBytes); if( listener.isCancelled() ) { throw new CancelledException(); } bytesSinceLastNotify += numBytes; if (bytesSinceLastNotify < 1000) { return; }