Package com.facebook.buck.step.fs
Interface SymlinkPaths
-
- All Known Implementing Classes:
SymlinkDirPaths
,SymlinkMapsPaths
,SymlinkPackPaths
public interface SymlinkPaths
Interface used to encapsulate symlinks used bySymlinkTreeMergeStep
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
SymlinkPaths.SymlinkConsumer
Functional interface called above on all symlinks.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
forEachSymlink(SymlinkPaths.SymlinkConsumer consumer)
Runconsumer
on all links.
-
-
-
Method Detail
-
forEachSymlink
void forEachSymlink(SymlinkPaths.SymlinkConsumer consumer) throws IOException
Runconsumer
on all links. Meant to be called byStep
s when actually creating the symlinks on disk.- Throws:
IOException
-
-