Gets the number of unprocessed input. Useful, if the end of the stream is reached and you want to further process the bytes after the deflate stream. @return the number of bytes of the input which were not processed.
()
| 238 | * @return the number of bytes of the input which were not processed. |
| 239 | */ |
| 240 | public int getRemaining() |
| 241 | { |
| 242 | return input.getAvailableBytes(); |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * Gets the total number of processed compressed input bytes. |
no test coverage detected