source: josm/trunk/src/org/tukaani/xz/FilterDecoder.java@ 13350

Last change on this file since 13350 was 13350, checked in by stoecker, 6 years ago

see #15816 - add XZ support

File size: 379 bytes
Line 
1/*
2 * FilterDecoder
3 *
4 * Author: Lasse Collin <lasse.collin@tukaani.org>
5 *
6 * This file has been put into the public domain.
7 * You can do whatever you want with this file.
8 */
9
10package org.tukaani.xz;
11
12import java.io.InputStream;
13
14interface FilterDecoder extends FilterCoder {
15 int getMemoryUsage();
16 InputStream getInputStream(InputStream in, ArrayCache arrayCache);
17}
Note: See TracBrowser for help on using the repository browser.