Package jetbrains.buildServer.vcs
Interface ChangesLoaderLogger
-
- All Known Subinterfaces:
ChangesCollectionLogger
- All Known Implementing Classes:
BuildStartChangesLoaderLogger,ChangesLoaderLoggerImpl
public interface ChangesLoaderLoggerCreated 25.08.13 13:05- Author:
- Eugene Petrenko (eugene.petrenko@jetbrains.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidlogCollectionCommonCheckoutRule(LoadChangesRequest state)2.voidlogCollectionCommonCheckoutRuleWithoutBadRules(LoadChangesRequest state, CheckoutRules combinedRule)3.voidlogErrorCollectionByCommonRule(LoadChangesRequest state, VcsIncludeRulesException e)2.1 Collection of changes by combined checkout rule may failedvoidlogFinishCollectingChanges(LoadChangesRequest state, boolean hadErrors, int persistedChangesCount, int collectedChangesCount, Date whenStarted, Date whenFinished, long changesPersistingDurationMillis)4.voidlogProgress(LVcsRootInstance root, String progress)voidlogStartCollectingChanges(LoadChangesRequest state, Date whenStarted)1.
-
-
-
Method Detail
-
logStartCollectingChanges
void logStartCollectingChanges(@NotNull LoadChangesRequest state, @NotNull Date whenStarted)1. Notification called on collection changes start- Parameters:
state- statedate- actual start date
-
logCollectionCommonCheckoutRule
void logCollectionCommonCheckoutRule(@NotNull LoadChangesRequest state)2. Notification called on collection of changes by combined checkout rule- Parameters:
state- state
-
logErrorCollectionByCommonRule
void logErrorCollectionByCommonRule(@NotNull LoadChangesRequest state, @NotNull VcsIncludeRulesException e)2.1 Collection of changes by combined checkout rule may failed- Parameters:
state- statee- error
-
logCollectionCommonCheckoutRuleWithoutBadRules
void logCollectionCommonCheckoutRuleWithoutBadRules(LoadChangesRequest state, CheckoutRules combinedRule)
3. Collection of changes will be performed without problematic checkout rules- Parameters:
e- errorstate- general statecombinedRule- combined checkout rule
-
logFinishCollectingChanges
void logFinishCollectingChanges(@NotNull LoadChangesRequest state, boolean hadErrors, int persistedChangesCount, int collectedChangesCount, @NotNull Date whenStarted, @NotNull Date whenFinished, long changesPersistingDurationMillis)4. changes collection is completed- Parameters:
state- statehadErrors- had errors during comllectionpersistedChangesCount- number of changes storedcollectedChangesCount- number of changes collectedwhenStarted- time of startwhenFinished- time of finish
-
logProgress
void logProgress(@NotNull LVcsRootInstance root, @NotNull String progress)
-
-