Searched defs:thresholdInBytes (Results 1 - 4 of 4) sorted by relevance

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DDiskSpaceMonitorHandler.java45 * @param thresholdInBytes the threshold value in bytes
47 void diskLowThresholdReached(File directory, long thresholdInBytes); argument
53 * @param thresholdInBytes the threshold value in bytes
55 void diskFullThresholdReached(File directory, long thresholdInBytes); argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/spi/
H A DStorageUtils.java227 * @param thresholdInBytes the threshold in bytes
231 public static StorageStatus statusWhenDiskSpaceFull(File directory, long thresholdInBytes, String backendId) argument
234 directory.getFreeSpace(), directory.getAbsolutePath(), thresholdInBytes, backendId));
241 * @param thresholdInBytes the threshold in bytes
245 public static StorageStatus statusWhenDiskSpaceLow(File directory, long thresholdInBytes, String backendId) argument
248 directory.getFreeSpace(), directory.getAbsolutePath(), thresholdInBytes, backendId));
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/jeb/
H A DJEStorage.java1229 public void diskFullThresholdReached(File directory, long thresholdInBytes) { argument
1230 storageStatus = statusWhenDiskSpaceFull(directory, thresholdInBytes, config.getBackendId());
1234 public void diskLowThresholdReached(File directory, long thresholdInBytes) { argument
1235 storageStatus = statusWhenDiskSpaceLow(directory, thresholdInBytes, config.getBackendId());
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pdb/
H A DPDBStorage.java1295 public void diskFullThresholdReached(File directory, long thresholdInBytes) { argument
1296 storageStatus = statusWhenDiskSpaceFull(directory, thresholdInBytes, config.getBackendId());
1300 public void diskLowThresholdReached(File directory, long thresholdInBytes) { argument
1301 storageStatus = statusWhenDiskSpaceLow(directory, thresholdInBytes, config.getBackendId());

Completed in 35 milliseconds