Re: performant way to check for incoming changes

2013-02-22 Thread Dmitry Pavlenko
You can't interrupt the receiver. Alternatively you could run svn log and analyze changed paths, but this approach is more difficult and I'm not sure that it will be faster. -- Dmitry Pavlenko, TMate Software, http://subgit.com/ - git-svn bridge > Super! this works fine. > > But the receiver

Re: performant way to check for incoming changes

2013-02-22 Thread Andy Van Den Heuvel
Super! this works fine. But the receiver iterates over all statuses. Can I break out of this iteration in some way? In case I have many updates objects? I only need to know if anything at all has changed. On Fri, Feb 22, 2013 at 3:25 PM, Dmitry Pavlenko wrote: > Hello Andy, > > In general case,

Re: performant way to check for incoming changes

2013-02-22 Thread Dmitry Pavlenko
Hello Andy, In general case, I think you need an analog of $ svn status -u This code does the same final SvnOperationFactory svnOperationFactory = new SvnOperationFactory(); try { final SvnGetStatus getStatus = svnOperationFactory.createGetStatus(); ge