| 113 | public: |
| 114 | void getRangesAffectedByInsertion(const KeyRangeRef& keys, std::vector<KeyRange>& affectedRanges); |
| 115 | void insert(const KeyRangeRef& keys, const Future<Void>& value) { map.insert(keys, value); } |
| 116 | void cancel(const KeyRangeRef& keys) { insert(keys, Future<Void>()); } |
| 117 | bool liveActorAt(const KeyRef& key) { |
| 118 | Future<Void> actorAt = map[key]; |