| 2905 | |
| 2906 | |
| 2907 | bool HierarchicalAllocatorProcess::isFrameworkTrackedUnderRole( |
| 2908 | const FrameworkID& frameworkId, const string& role) const |
| 2909 | { |
| 2910 | Option<const Role*> r = roleTree.get(role); |
| 2911 | return r.isSome() && (*r)->frameworks().contains(frameworkId); |
| 2912 | } |
| 2913 | |
| 2914 | |
| 2915 | Option<Slave*> HierarchicalAllocatorProcess::getSlave( |
nothing calls this directly
no test coverage detected