Package com.zfabrik.svnaccess
Interface ISvnLogEntryHandler
-
public interface ISvnLogEntryHandler
Callback handler for SVN LOG operation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleLogEntry(SvnLogItem logItem)
This method is called for each SVN resource during an SVN LOG operation.
-
-
-
Method Detail
-
handleLogEntry
void handleLogEntry(SvnLogItem logItem) throws java.lang.Exception
This method is called for each SVN resource during an SVN LOG operation.- Parameters:
logItem
- log item details like path, revision, action- Throws:
java.lang.Exception
- the implementation will close all open streams and connections upon application exceptions (e.g. in order to reuse HTTP/TCP connections)
-
-