Package org.apache.iceberg.actions
Interface Action<R>
-
- Type Parameters:
R
- the Java type of the result produced by this action
- All Known Subinterfaces:
SnapshotUpdateAction<ThisT,R>
- All Known Implementing Classes:
RemoveOrphanFilesAction
,RewriteDataFilesAction
,RewriteManifestsAction
public interface Action<R>
An action performed on a table.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
execute()
Executes this action.
-
-
-
Method Detail
-
execute
R execute()
Executes this action.- Returns:
- the result of this action
-
-