*/
public void dump(String path, OutputInterface dataOut, final OutputInterface errorOut, Revision start,
Revision end, boolean incremental, boolean useDeltas) throws ClientException {
OutputStream os = createOutputStream(dataOut);
try {
getAdminClient().setEventHandler(new SVNAdminEventAdapter() {
public void handleAdminEvent(SVNAdminEvent event, double progress) throws SVNException {
if (errorOut != null && event.getAction() == SVNAdminEventAction.REVISION_DUMPED) {
try {
errorOut.write(event.getMessage().getBytes());
errorOut.write(myDelegate.getOptions().getNativeEOL());