Interface DiskOptimizer
- All Known Implementing Classes:
PascalDiskOptimizer
public interface DiskOptimizer
An optional disk optimizer interface.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates if this disk can be optimized.voidPerform disk optimization.
-
Method Details
-
canOptimizeDisk
boolean canOptimizeDisk()Indicates if this disk can be optimized. For instance, a Pascal disk can be "krunched" to pack the files together but it may not need it. -
optimizeDisk
void optimizeDisk()Perform disk optimization.
-