Package com.alibaba.jstorm.container.cgroup.core

Examples of com.alibaba.jstorm.container.cgroup.core.BlkioCore


      Set<SubSystemType> types, String dir) {
    Map<SubSystemType, CgroupCore> result = new HashMap<SubSystemType, CgroupCore>();
    for (SubSystemType type : types) {
      switch (type) {
      case blkio:
        result.put(SubSystemType.blkio, new BlkioCore(dir));
        break;
      case cpuacct:
        result.put(SubSystemType.cpuacct, new CpuacctCore(dir));
        break;
      case cpuset:
View Full Code Here

TOP

Related Classes of com.alibaba.jstorm.container.cgroup.core.BlkioCore

Copyright © 2018 www.massapicom. 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.