Package org.openrewrite.maven.cache
Interface MavenArtifactCache
- All Known Implementing Classes:
LocalMavenArtifactCache
,ReadOnlyLocalMavenArtifactCache
public interface MavenArtifactCache
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiondefault @Nullable Path
computeArtifact
(ResolvedDependency dependency, Callable<@Nullable InputStream> artifactStream, Consumer<Throwable> onError) @Nullable Path
getArtifact
(ResolvedDependency dependency) default MavenArtifactCache
orElse
(MavenArtifactCache other) @Nullable Path
putArtifact
(ResolvedDependency dependency, InputStream is, Consumer<Throwable> onError)
-
Field Details
-
NOOP
-
-
Method Details
-
getArtifact
-
putArtifact
@Nullable @Nullable Path putArtifact(ResolvedDependency dependency, InputStream is, Consumer<Throwable> onError) -
computeArtifact
@Nullable default @Nullable Path computeArtifact(ResolvedDependency dependency, Callable<@Nullable InputStream> artifactStream, Consumer<Throwable> onError) -
orElse
-