Package jetbrains.buildServer.agent.vcs
Interface IncludeRuleUpdater
-
public interface IncludeRuleUpdaterThis interface represents vcs updater.- Since:
- 4.5
- See Also:
UpdateByIncludeRules2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddispose()Called when all necessary vsc update operation are performed.voidprocess(IncludeRule rule, File includeRuleDestFolder)Does vcs update for the include rule to specified folder.
-
-
-
Method Detail
-
process
void process(@NotNull IncludeRule rule, @NotNull File includeRuleDestFolder) throws VcsExceptionDoes vcs update for the include rule to specified folder.- Parameters:
rule- rule to processincludeRuleDestFolder- folder where checkout of files should be performed- Throws:
VcsException- on error
-
dispose
void dispose() throws VcsExceptionCalled when all necessary vsc update operation are performed. This object will never been used after this call.- Throws:
VcsException- on error
-
-