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 SummaryConstructors Constructor Description IncrementalScanEvent(java.lang.String tableName, long fromSnapshotId, long toSnapshotId, Expression filter, Schema projection, boolean fromSnapshotInclusive)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Expressionfilter()longfromSnapshotId()booleanisFromSnapshotInclusive()Schemaprojection()java.lang.StringtableName()longtoSnapshotId()
 
- 
- 
- 
Constructor Detail- 
IncrementalScanEventpublic IncrementalScanEvent(java.lang.String tableName, long fromSnapshotId, long toSnapshotId, Expression filter, Schema projection, boolean fromSnapshotInclusive)
 
- 
 - 
Method Detail- 
tableNamepublic java.lang.String tableName() 
 - 
fromSnapshotIdpublic long fromSnapshotId() 
 - 
toSnapshotIdpublic long toSnapshotId() 
 - 
filterpublic Expression filter() 
 - 
projectionpublic Schema projection() 
 - 
isFromSnapshotInclusivepublic boolean isFromSnapshotInclusive() 
 
- 
 
-