Package org.sonar.api.batch.sensor.cache
Interface ReadCache
-
@Beta public interface ReadCache
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancontains(java.lang.String key)Checks whether the cache contains a keyjava.io.InputStreamread(java.lang.String key)Returns an input stream for the data cached with the key.
-
-
-
Method Detail
-
read
java.io.InputStream read(java.lang.String key)
Returns an input stream for the data cached with the key. It's the responsibility of the caller to close the stream.- Throws:
java.lang.IllegalArgumentException- if cache doesn't contain key
-
contains
boolean contains(java.lang.String key)
Checks whether the cache contains a key
-
-