Interface DiskSpaceUsageListener
- All Known Implementing Classes:
BackupApiRequestHandler,CommandApiServiceImpl,InterPartitionCommandReceiverActor,ZeebePartition
public interface DiskSpaceUsageListener
Used by DiskSpaceUsageMonitor to notify listeners when disk space usage grows above (and below)
the configured threshold
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidWill be called when disk space usage goes below the threshold after it was above it.default voidWill be called when disk space usage grows above the threshold
-
Method Details
-
onDiskSpaceNotAvailable
default void onDiskSpaceNotAvailable()Will be called when disk space usage grows above the threshold -
onDiskSpaceAvailable
default void onDiskSpaceAvailable()Will be called when disk space usage goes below the threshold after it was above it.
-