Package org.apache.tika.io
Interface InputStreamFactory
- 
 public interface InputStreamFactoryA factory which returns a fresh InputStreamfor the same resource each time.This is typically desired where it is easier / quicker / simpler to fetch a fresh InputStreamto re-read a given resource, rather than do any kind of buffering.It is typically used with TikaInputStream.get(InputStreamFactory)when combined with a Parser which needs to read the resource's stream multiple times when processing.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description InputStreamgetInputStream()
 
- 
- 
- 
Method Detail- 
getInputStreamInputStream getInputStream() throws IOException - Throws:
- IOException
 
 
- 
 
-