Interface DeletedEntityTracker
-
- All Known Implementing Classes:
DeletedEntityTrackerImpl
public interface DeletedEntityTracker
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
consumeDeletedBuildUuids(Set<String> originProjectIntIds, Consumer<String> consumer)
void
consumeDeletedProjectUuids(Set<String> originProjectIntIds, Consumer<EntityId<String>> consumer)
void
consumeDeletedVcsRootUuids(Set<String> originProjectIntIds, Consumer<String> consumer)
ProjectsLoaderCallback
createProjectsLoaderCallback()
Set<String>
getBuildUuids(SProject originProject)
Set<String>
getProjectUuids(SProject originProject)
Set<String>
getVcsRootUuids(SProject originProject)
-
-
-
Method Detail
-
createProjectsLoaderCallback
@NotNull ProjectsLoaderCallback createProjectsLoaderCallback()
-
consumeDeletedProjectUuids
void consumeDeletedProjectUuids(@NotNull Set<String> originProjectIntIds, @NotNull Consumer<EntityId<String>> consumer)
-
consumeDeletedBuildUuids
void consumeDeletedBuildUuids(@NotNull Set<String> originProjectIntIds, @NotNull Consumer<String> consumer)
-
consumeDeletedVcsRootUuids
void consumeDeletedVcsRootUuids(@NotNull Set<String> originProjectIntIds, @NotNull Consumer<String> consumer)
-
-