Package com.google.common.io
Interface OutputSupplier<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description T
getOutput()
Deprecated.Returns an object that encapsulates a writable resource.
-
-
-
Method Detail
-
getOutput
T getOutput() throws java.io.IOException
Deprecated.Returns an object that encapsulates a writable resource.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.
- Throws:
java.io.IOException
-
-