Interface BuildTypeVcsBranchesInfoCache
-
- All Known Implementing Classes:
BuildTypeBranchesInfoCacheImpl
public interface BuildTypeVcsBranchesInfoCache
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BuildTypeBranches.BuildTypeVcsBranchesInfo
get(Map<VcsRootInstance,BranchSpec> branchSpecMap, Long age, boolean computeTimestamps)
BuildTypeBranches.BuildTypeVcsBranchesInfo
get(VcsRootInstance root, BranchSpec spec, Long age, boolean computeTimestamps)
Map<VcsRootInstance,BranchSpec>
getLastUsedBranchSpecMap(BuildTypeEx buildType, boolean includeSettingsRoot)
RepositoryState
getRepositoryState(VcsRootInstanceEx rootInstance)
RepositoryState
getStateWithActiveBranches(VcsRootInstanceEx rootInstance, long branchAge)
void
put(BuildTypeBranches.BuildTypeVcsBranchesInfo info, Map<VcsRootInstance,BranchSpec> branchSpecMap, Long age, boolean computeTimestamps)
void
put(BuildTypeBranches.BuildTypeVcsBranchesInfo info, VcsRootInstanceEx root, BranchSpec spec, Long age, boolean computeTimestamps)
-
-
-
Method Detail
-
get
@Nullable BuildTypeBranches.BuildTypeVcsBranchesInfo get(@NotNull VcsRootInstance root, @NotNull BranchSpec spec, @Nullable Long age, boolean computeTimestamps)
-
get
BuildTypeBranches.BuildTypeVcsBranchesInfo get(@NotNull Map<VcsRootInstance,BranchSpec> branchSpecMap, @Nullable Long age, boolean computeTimestamps)
-
put
void put(@NotNull BuildTypeBranches.BuildTypeVcsBranchesInfo info, @NotNull VcsRootInstanceEx root, @NotNull BranchSpec spec, @Nullable Long age, boolean computeTimestamps)
-
put
void put(@NotNull BuildTypeBranches.BuildTypeVcsBranchesInfo info, @NotNull Map<VcsRootInstance,BranchSpec> branchSpecMap, @Nullable Long age, boolean computeTimestamps)
-
getRepositoryState
@NotNull RepositoryState getRepositoryState(@NotNull VcsRootInstanceEx rootInstance)
-
getStateWithActiveBranches
@NotNull RepositoryState getStateWithActiveBranches(@NotNull VcsRootInstanceEx rootInstance, long branchAge)
-
getLastUsedBranchSpecMap
@NotNull Map<VcsRootInstance,BranchSpec> getLastUsedBranchSpecMap(@NotNull BuildTypeEx buildType, boolean includeSettingsRoot)
-
-