Package org.apache.iceberg.actions
Interface ExpireSnapshots.Result
-
- All Known Implementing Classes:
BaseExpireSnapshotsActionResult
- Enclosing interface:
- ExpireSnapshots
public static interface ExpireSnapshots.ResultThe action result that contains a summary of the execution.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longdeletedDataFilesCount()Returns the number of deleted data files.longdeletedManifestListsCount()Returns the number of deleted manifest lists.longdeletedManifestsCount()Returns the number of deleted manifests.
-
-
-
Method Detail
-
deletedDataFilesCount
long deletedDataFilesCount()
Returns the number of deleted data files.
-
deletedManifestsCount
long deletedManifestsCount()
Returns the number of deleted manifests.
-
deletedManifestListsCount
long deletedManifestListsCount()
Returns the number of deleted manifest lists.
-
-