(self, item)
| 1248 | self.flags = {} |
| 1249 | |
| 1250 | def put(self, item): |
| 1251 | with self.mutex: |
| 1252 | heapq.heappush(self.queue, item) |
| 1253 | self.server.queue_updated() |
| 1254 | self.not_empty.notify() |
| 1255 | |
| 1256 | def get(self, timeout=None): |
| 1257 | with self.not_empty: |