Package org.apache.iceberg.events
Class ScanEvent
- java.lang.Object
-
- org.apache.iceberg.events.ScanEvent
-
public final class ScanEvent extends java.lang.Object
Event sent to listeners when a table scan is planned.
-
-
Constructor Summary
Constructors Constructor Description ScanEvent(java.lang.String tableName, long snapshotId, Expression filter, Schema projection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Expression
filter()
Schema
projection()
long
snapshotId()
java.lang.String
tableName()
-
-
-
Constructor Detail
-
ScanEvent
public ScanEvent(java.lang.String tableName, long snapshotId, Expression filter, Schema projection)
-
-
Method Detail
-
tableName
public java.lang.String tableName()
-
snapshotId
public long snapshotId()
-
filter
public Expression filter()
-
projection
public Schema projection()
-
-