TotalBytesSize() public method

Returns the total size in bytes of this merge. Note that this does not indicate the size of the merged segment, but the input total size. this is only set once the merge is initialized by IndexWriter.
public TotalBytesSize ( ) : long
return long
Ejemplo n.º 1
0
 protected internal override void DoMerge(MergePolicy.OneMerge merge)
 {
     TotMergedBytes += merge.TotalBytesSize();
     base.DoMerge(merge);
 }