Package com.facebook.buck.io.filesystem
Class ProjectFilesystemDelegatePair
- java.lang.Object
-
- com.facebook.buck.io.filesystem.ProjectFilesystemDelegatePair
-
public class ProjectFilesystemDelegatePair extends Object
A wrapper around two ProjectFilesystemDelegates where generalDelegate is the typical delegate that is used and buckOutDelegate is the delegate used in the case where we know we're running in a buck-out directory, so we can skip the usual check if we're in an Eden mounted directory.
-
-
Constructor Summary
Constructors Constructor Description ProjectFilesystemDelegatePair(ProjectFilesystemDelegate defaultDelegate, ProjectFilesystemDelegate buckOutDelegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProjectFilesystemDelegate
getBuckOutDelegate()
ProjectFilesystemDelegate
getGeneralDelegate()
-
-
-
Constructor Detail
-
ProjectFilesystemDelegatePair
public ProjectFilesystemDelegatePair(ProjectFilesystemDelegate defaultDelegate, ProjectFilesystemDelegate buckOutDelegate)
-
-
Method Detail
-
getGeneralDelegate
public ProjectFilesystemDelegate getGeneralDelegate()
-
getBuckOutDelegate
public ProjectFilesystemDelegate getBuckOutDelegate()
-
-