OutputSupplier<? extends OutputStream>, use
     ByteSink instead. For OutputSupplier<? extends Writer>,
     use CharSink. Implementations of OutputSupplier that
     don't fall into one of those categories do not benefit from any of the
     methods in common.io and should use a different interface. This
     interface is scheduled for removal in December 2015.@Deprecated public interface OutputSupplier<T>
T getOutput() throws IOException
 Like Iterable.iterator(), this method may be called repeatedly to
 get independent channels to the same underlying resource.
 
Where the channel maintains a position within the resource, moving that cursor within one channel should not affect the starting position of channels returned by other calls.
IOExceptionCopyright © 2010-2015. All Rights Reserved.