Interface Patcher
-
- All Known Subinterfaces:
UndoSupportingPatcher
- All Known Implementing Classes:
AbstractFSPatcher,AbstractPatcher,FSPatcherImpl,FSUndoSupportingPatcher,UnifiedDiffUndoSupportingPatcher,VerifyingPatcher
public interface PatcherApplies patch to the file system.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapplyPatch()Applies patch.voidclose()Disposes the patcher process.voidinterrupt()Interrupts patching process.
-
-
-
Method Detail
-
applyPatch
void applyPatch() throws IOExceptionApplies patch.- Throws:
IOException- some file system operation failed or patch process terminated with see jetbrains.buildServer.vcs.patches.InterruptedPatchException or some problem occurred during the patch process (see jetbrains.buildServer.vcs.patches.UnsuccessfulPatchException).
-
interrupt
void interrupt()
Interrupts patching process.applyPatch()may throw {see jetbrains.buildServer.vcs.patches.InterruptedPatchException}
-
close
void close()
Disposes the patcher process.
-
-