Uses of Interface
io.github.lukehutch.fastclasspathscanner.ResourceList.InputStreamConsumer
-
Packages that use ResourceList.InputStreamConsumer Package Description io.github.lukehutch.fastclasspathscanner -
-
Uses of ResourceList.InputStreamConsumer in io.github.lukehutch.fastclasspathscanner
Methods in io.github.lukehutch.fastclasspathscanner with parameters of type ResourceList.InputStreamConsumer Modifier and Type Method Description void
ResourceList. forEachInputStream(ResourceList.InputStreamConsumer inputStreamConsumer)
Fetch anInputStream
for eachResource
in thisResourceList
, pass theInputStream
to the givenResourceList.InputStreamConsumer
, then close theInputStream
after theResourceList.InputStreamConsumer
returns, by callingResource.close()
.void
ResourceList. forEachInputStream(ResourceList.InputStreamConsumer inputStreamConsumer, boolean ignoreIOExceptions)
Fetch anInputStream
for eachResource
in thisResourceList
, pass theInputStream
to the givenResourceList.InputStreamConsumer
, then close theInputStream
after theResourceList.InputStreamConsumer
returns, by callingResource.close()
.
-