public class FileTreeComputation extends Object implements GraphComputation<FileTreeKey,FileTree>
| Modifier and Type | Method and Description |
|---|---|
com.google.common.collect.ImmutableSet<FileTreeKey> |
discoverDeps(FileTreeKey key,
ComputationEnvironment env)
Compute dependent keys required to compute given key, and a set of dependencies as listed by
GraphComputation.discoverPreliminaryDeps(ComputeKey). |
com.google.common.collect.ImmutableSet<? extends ComputeKey<? extends ComputeResult>> |
discoverPreliminaryDeps(FileTreeKey key)
Compute dependent keys required to compute given the current key.
|
ComputationIdentifier<FileTree> |
getIdentifier() |
static FileTreeComputation |
of() |
FileTree |
transform(FileTreeKey key,
ComputationEnvironment env)
Perform a transformation identified by key
Key into a final type Result. |
public static FileTreeComputation of()
public ComputationIdentifier<FileTree> getIdentifier()
getIdentifier in interface GraphComputation<FileTreeKey,FileTree>ComputeKey.getIdentifier()public FileTree transform(FileTreeKey key, ComputationEnvironment env)
GraphComputationKey into a final type Result. This
transformation should be performed synchronously.transform in interface GraphComputation<FileTreeKey,FileTree>key - The Key of the requested resultenv - The execution environment containing results of keys from GraphComputation.discoverDeps(ComputeKey, ComputationEnvironment) and GraphComputation.discoverPreliminaryDeps(ComputeKey)public com.google.common.collect.ImmutableSet<FileTreeKey> discoverDeps(FileTreeKey key, ComputationEnvironment env)
GraphComputationGraphComputation.discoverPreliminaryDeps(ComputeKey). The results of those computations will be
available in GraphComputation.transform(ComputeKey, ComputationEnvironment) as a part of ComputationEnvironmentdiscoverDeps in interface GraphComputation<FileTreeKey,FileTree>key - the current key to transformenv - The execution environment containing results of keys from GraphComputation.discoverPreliminaryDeps(ComputeKey)public com.google.common.collect.ImmutableSet<? extends ComputeKey<? extends ComputeResult>> discoverPreliminaryDeps(FileTreeKey key)
GraphComputationGraphComputation.discoverDeps(ComputeKey, ComputationEnvironment) as
a part of ComputationEnvironment, and GraphComputation.transform(ComputeKey,
ComputationEnvironment)discoverPreliminaryDeps in interface GraphComputation<FileTreeKey,FileTree>key - the current key to transformGraphComputation.discoverDeps(ComputeKey, ComputationEnvironment) and
GraphComputation.transform(ComputeKey, ComputationEnvironment) of the current key depends on