Examples of DiskVolumeInfo


Examples of com.dianping.cat.status.model.entity.DiskVolumeInfo

  public void visitDisk(DiskInfo disk) {
    File[] roots = File.listRoots();

    if (roots != null) {
      for (File root : roots) {
        disk.addDiskVolume(new DiskVolumeInfo(root.getAbsolutePath()));
      }
    }

    File data = new File(m_dataPath);

    if (data.exists()) {
      disk.addDiskVolume(new DiskVolumeInfo(data.getAbsolutePath()));
    }

    super.visitDisk(disk);
  }
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.