Router: Add gzip caches to clearCaches()

This commit is contained in:
zzz
2015-05-30 11:18:04 +00:00
parent c807194e93
commit 7715e6484c
3 changed files with 22 additions and 0 deletions

View File

@ -43,6 +43,15 @@ public class ReusableGZIPInputStream extends ResettableGZIPInputStream {
private ReusableGZIPInputStream() { super(); }
/**
* Clear the cache.
* @since 0.9.21
*/
public static void clearCache() {
if (_available != null)
_available.clear();
}
/*******
public static void main(String args[]) {
for (int i = 0; i < 2; i++)

View File

@ -75,6 +75,15 @@ public class ReusableGZIPOutputStream extends ResettableGZIPOutputStream {
/** pull the contents of the stream written */
public byte[] getData() { return _buffer.toByteArray(); }
/**
* Clear the cache.
* @since 0.9.21
*/
public static void clearCache() {
if (_available != null)
_available.clear();
}
/******
public static void main(String args[]) {
try {