return result;
}
@Override
public void executeBatch(OperationsQueue queue) {
OperationsQueue newQueue = new OperationsQueue();
StringBuilder sb = new StringBuilder();
if ( !queue.isClosed() ) {
Operation operation = queue.poll();
while ( operation != null ) {
newQueue.add( operation );
if ( operation instanceof InsertOrUpdateTupleOperation ) {
sb.append( "InsertOrUpdateTuple(" ).append( ( (InsertOrUpdateTupleOperation) operation ).getEntityKey() ).append( " )" );
}
else if ( operation instanceof RemoveTupleOperation ) {