Package org.tmatesoft.svn.core.wc2
Interface ISvnOperationHandler
-
public interface ISvnOperationHandler
-
-
Field Summary
Fields Modifier and Type Field Description static ISvnOperationHandler
NOOP
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
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 Detail
-
NOOP
static final ISvnOperationHandler NOOP
-
-
Method Detail
-
beforeOperation
void beforeOperation(SvnOperation<?> operation) throws SVNException
A callback that is called before each operation runs- Parameters:
operation
- operation for which the callback is called- Throws:
SVNException
-
afterOperationSuccess
void afterOperationSuccess(SvnOperation<?> operation) throws SVNException
A callback that is called after each successful operation runs- Parameters:
operation
- operation for which the callback is called- Throws:
SVNException
-
afterOperationFailure
void afterOperationFailure(SvnOperation<?> operation)
A callback that is called after each unsuccessful operation runs- Parameters:
operation
- operation for which the callback is called
-
-