/* * FilterDecoder * * Author: Lasse Collin * * This file has been put into the public domain. * You can do whatever you want with this file. */ package org.tukaani.xz; import java.io.InputStream; interface FilterDecoder extends FilterCoder { int getMemoryUsage(); InputStream getInputStream(InputStream in); }