Create executor map from list of executor objects
(self, executors)
| 164 | self._executor_map[map_key] = executor |
| 165 | |
| 166 | def add_executors(self, executors): |
| 167 | """Create executor map from list of executor objects""" |
| 168 | for executor in executors: |
| 169 | self.add_executor(executor) |
| 170 | |
| 171 | def remove_all_executors(self): |
| 172 | self._executor_map = collections.OrderedDict() |