Package org.apache.iceberg.events
Class IncrementalScanEvent
- java.lang.Object
-
- org.apache.iceberg.events.IncrementalScanEvent
-
public final class IncrementalScanEvent extends java.lang.Object
Event 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 Expression
filter()
long
fromSnapshotId()
boolean
isFromSnapshotInclusive()
Schema
projection()
java.lang.String
tableName()
long
toSnapshotId()
-
-
-
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()
-
-