Package org.apache.iceberg.actions
Interface ExpireSnapshots.Result
-
- All Known Implementing Classes:
BaseExpireSnapshotsActionResult
- Enclosing interface:
- ExpireSnapshots
public static interface ExpireSnapshots.Result
The action result that contains a summary of the execution.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
deletedDataFilesCount()
Returns the number of deleted data files.long
deletedManifestListsCount()
Returns the number of deleted manifest lists.long
deletedManifestsCount()
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.
-
-