Github user kchilton2 commented on a diff in the pull request:

    https://github.com/apache/incubator-rya/pull/251#discussion_r153266257
  
    --- Diff: 
extras/rya.pcj.fluo/pcj.fluo.app/src/main/java/org/apache/rya/indexing/pcj/fluo/app/batch/SpanBatchDeleteInformation.java
 ---
    @@ -20,39 +22,79 @@
     import org.apache.fluo.api.data.Column;
     import org.apache.fluo.api.data.Span;
     
    +import com.google.common.base.Preconditions;
    +
     /**
      * This class represents a batch order to delete all entries in the Fluo 
table indicated
      * by the given Span and Column.  These batch orders are processed by the 
{@link BatchObserver},
      * which uses this batch information along with the nodeId passed into the 
Observer to perform
    - * batch deletes.  
    + * batch deletes.
      *
      */
     public class SpanBatchDeleteInformation extends 
AbstractSpanBatchInformation {
     
         private static final BatchBindingSetUpdater updater = new 
SpanBatchBindingSetUpdater();
    -    
    -    public SpanBatchDeleteInformation(int batchSize, Column column, Span 
span) {
    +    private Optional<String> nodeId;
    +
    +    /**
    +     * Create a new SpanBatchInformation object.
    +     * @param nodeId - Optional nodeId that is used to filter returned 
results.  Useful if the hash
    --- End diff --
    
    What hash? Does it have a special name?


---

Reply via email to