Package org.tmatesoft.svn.core.wc2
Interface ISvnOperationHandler
public interface ISvnOperationHandler
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
afterOperationFailure
(SvnOperation<?> operation) A callback that is called after each unsuccessful operation runsvoid
afterOperationSuccess
(SvnOperation<?> operation) A callback that is called after each successful operation runsvoid
beforeOperation
(SvnOperation<?> operation) A callback that is called before each operation runs
-
Field Details
-
NOOP
-
-
Method Details
-
beforeOperation
A callback that is called before each operation runs- Parameters:
operation
- operation for which the callback is called- Throws:
SVNException
-
afterOperationSuccess
A callback that is called after each successful operation runs- Parameters:
operation
- operation for which the callback is called- Throws:
SVNException
-
afterOperationFailure
A callback that is called after each unsuccessful operation runs- Parameters:
operation
- operation for which the callback is called
-