git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5311 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
lotus 17 years ago
parent 8d07607d1d
commit 5cf0cbb47e

@ -55,6 +55,11 @@ public final class ResourceObserver {
private int disksFree; private int disksFree;
private int memoryFree; private int memoryFree;
/**
* The ResourceObserver checks the resources
* and pauses crawls if necessary
* @param sb the plasmaSwitchboard
*/
public ResourceObserver(final plasmaSwitchboard sb) { public ResourceObserver(final plasmaSwitchboard sb) {
this.sb = sb; this.sb = sb;
this.log.logInfo("initializing the resource observer"); this.log.logInfo("initializing the resource observer");
@ -87,6 +92,9 @@ public final class ResourceObserver {
memoryFree = HIGH; memoryFree = HIGH;
} }
/**
* checks the resources and pauses crawls if necessary
*/
public void resourceObserverJob() { public void resourceObserverJob() {
checkDiskUsageCount++; checkDiskUsageCount++;
checkMemoryUsageCount++; checkMemoryUsageCount++;
@ -126,10 +134,16 @@ public final class ResourceObserver {
} }
} }
/**
* @return <code>true</code> if disk space is available
*/
public boolean getDisksOK () { public boolean getDisksOK () {
return disksFree == HIGH; return disksFree == HIGH;
} }
/**
* @return <code>true</code> if memory is available
*/
public boolean getMemoryOK () { public boolean getMemoryOK () {
return memoryFree == HIGH; return memoryFree == HIGH;
} }
@ -149,7 +163,6 @@ public final class ResourceObserver {
* <li><code>LOW</code> if lower than 100MB or 1/5 disk space is available</li> * <li><code>LOW</code> if lower than 100MB or 1/5 disk space is available</li>
* </ul> * </ul>
*/ */
private int checkDisks() { private int checkDisks() {
int ret = HIGH; int ret = HIGH;

Loading…
Cancel
Save