com.bumptech.glide.load.model
Class StreamEncoder

java.lang.Object
  extended by com.bumptech.glide.load.model.StreamEncoder
All Implemented Interfaces:
Encoder<InputStream>

public class StreamEncoder
extends Object
implements Encoder<InputStream>

An Encoder that can write an InputStream to disk.


Constructor Summary
StreamEncoder()
           
 
Method Summary
 boolean encode(InputStream data, OutputStream os)
          Writes the given data to the given output stream and returns True if the write completed successfully and should be committed.
 String getId()
          Returns an ID identifying any transformation this encoder may apply to the given data that will be mixed in to the cache key.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StreamEncoder

public StreamEncoder()
Method Detail

encode

public boolean encode(InputStream data,
                      OutputStream os)
Description copied from interface: Encoder
Writes the given data to the given output stream and returns True if the write completed successfully and should be committed.

Specified by:
encode in interface Encoder<InputStream>
Parameters:
data - The data to write.
os - The OutputStream to write the data to.

getId

public String getId()
Description copied from interface: Encoder
Returns an ID identifying any transformation this encoder may apply to the given data that will be mixed in to the cache key.

If the encoder does not transform the data in a way that significantly affects the cached result (ie performs no unusual compression or downsampling) an empty string is an appropriate id.

Specified by:
getId in interface Encoder<InputStream>