Examples of DiskUsageJob


Examples of org.eclipse.orion.server.useradmin.diskusage.DiskUsageJob

    singleton = this;
    this.bundleContext = bundleContext;

    String diskUsageEnabled = PreferenceHelper.getString(ServerConstants.CONFIG_DISK_USAGE_ENABLED, "false").toLowerCase(); //$NON-NLS-1$
    if ("true".equals(diskUsageEnabled)) {
      diskUsageJob = new DiskUsageJob();
      // Collect the disk usage data in ten seconds.
      diskUsageJob.schedule(10000);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.