(self, map_func, files)
| 211 | self.results = results |
| 212 | |
| 213 | def mp_map(self, map_func, files): |
| 214 | with mp.Pool(initializer=proc_init, initargs=(client_context.client_options,)) as pool: |
| 215 | pool.map(map_func, files) |
| 216 | |
| 217 | |
| 218 | # BSON MICRO-BENCHMARKS |