I'll put some deprecations into the codebase on BulkUpdateHandler for
add(Triple [])
add( List<Triple>)
add( Iterator<Triple>)
delete(Triple [])
delete( List<Triple>)
delete( Iterator<Triple>)
(see also SimpleBulkUpdateHandler ... which isn't so simple because of
events)
and we can see what need changing and how much.
A first pass didn't look too bad at all - the event handling needs
checking and I'm not convinced that the current complexity adds
anything, or if it is even used by anything other than the test suite.
e.g. StatementListener converts all different the calls into multiple
calls of addedStatement or removedStatement.
Andy