(self)
| 52 | ] |
| 53 | |
| 54 | def _producer(self): |
| 55 | inqueue = self.inqueue |
| 56 | |
| 57 | with self.app.producer_or_acquire() as producer: |
| 58 | while 1: |
| 59 | task, args, kwargs, options, receipt = inqueue.get() |
| 60 | result = task.apply_async(args, kwargs, |
| 61 | producer=producer, |
| 62 | **options) |
| 63 | receipt.finished(result) |
nothing calls this directly
no test coverage detected