Package org.tmatesoft.svn.core.wc2
Interface ISvnOperationHandler
public interface ISvnOperationHandler
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoidafterOperationFailure(SvnOperation<?> operation) A callback that is called after each unsuccessful operation runsvoidafterOperationSuccess(SvnOperation<?> operation) A callback that is called after each successful operation runsvoidbeforeOperation(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
-