Package org.apache.iceberg.events
Class IncrementalScanEvent
- java.lang.Object
 - 
- org.apache.iceberg.events.IncrementalScanEvent
 
 
- 
public final class IncrementalScanEvent extends java.lang.ObjectEvent sent to listeners when an incremental table scan is planned. 
- 
- 
Constructor Summary
Constructors Constructor Description IncrementalScanEvent(java.lang.String tableName, long fromSnapshotId, long toSnapshotId, Expression filter, Schema projection, boolean fromSnapshotInclusive) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Expressionfilter()longfromSnapshotId()booleanisFromSnapshotInclusive()Schemaprojection()java.lang.StringtableName()longtoSnapshotId() 
 - 
 
- 
- 
Constructor Detail
- 
IncrementalScanEvent
public IncrementalScanEvent(java.lang.String tableName, long fromSnapshotId, long toSnapshotId, Expression filter, Schema projection, boolean fromSnapshotInclusive) 
 - 
 
- 
Method Detail
- 
tableName
public java.lang.String tableName()
 
- 
fromSnapshotId
public long fromSnapshotId()
 
- 
toSnapshotId
public long toSnapshotId()
 
- 
filter
public Expression filter()
 
- 
projection
public Schema projection()
 
- 
isFromSnapshotInclusive
public boolean isFromSnapshotInclusive()
 
 - 
 
 -