• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
10 package org.tukaani.xz;
11 
12 import java.io.InputStream;
13 
14 interface FilterDecoder extends FilterCoder {
getMemoryUsage()15     int getMemoryUsage();
getInputStream(InputStream in, ArrayCache arrayCache)16     InputStream getInputStream(InputStream in, ArrayCache arrayCache);
17 }
18