Interface CompactableFile
-
- All Known Implementing Classes:
CompactableFileImpl
public interface CompactableFile
A single file ready to compact, that will come in a set of possible candidates.- Since:
- 2.1.0
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static CompactableFile
create(URI uri, long estimatedSize, long estimatedEntries)
long
getEstimatedEntries()
long
getEstimatedSize()
String
getFileName()
URI
getUri()
-
-
-
Method Detail
-
getFileName
String getFileName()
-
getUri
URI getUri()
-
getEstimatedSize
long getEstimatedSize()
-
getEstimatedEntries
long getEstimatedEntries()
-
create
static CompactableFile create(URI uri, long estimatedSize, long estimatedEntries)
-
-