Package org.gradle.caching
Interface BuildCacheEntryReader
-
public interface BuildCacheEntryReader
A reader for build cache entries.- Since:
- 3.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
readFrom(java.io.InputStream input)
Read a build cache entry from the given input stream.
-
-
-
Method Detail
-
readFrom
void readFrom(java.io.InputStream input) throws java.io.IOException
Read a build cache entry from the given input stream.The given input stream will be closed by this method.
- Parameters:
input
- input stream that contains the build cache entry- Throws:
java.io.IOException
- when an I/O error occurs when reading the cache entry from the given input stream
-
-