Package com.facebook.buck.rules.keys
Class RuleKeyResult<R>
- java.lang.Object
-
- com.facebook.buck.rules.keys.RuleKeyResult<R>
-
public class RuleKeyResult<R> extends Object
The result of rule key computation, including the deps and inputs used to calculate the value.
-
-
Field Summary
Fields Modifier and Type Field Description Iterable<?>
deps
All other `BuildRule`s and `RuleKeyAppendable`s which this rule key's value depends on.Iterable<com.facebook.buck.rules.keys.RuleKeyInput>
inputs
All inputs this rule key's value depends on.R
result
The result of rule key computation.
-
-
-
Field Detail
-
result
public final R result
The result of rule key computation.
-
deps
public final Iterable<?> deps
All other `BuildRule`s and `RuleKeyAppendable`s which this rule key's value depends on.
-
inputs
public final Iterable<com.facebook.buck.rules.keys.RuleKeyInput> inputs
All inputs this rule key's value depends on.
-
-