(self, event)
| 31 | self.received = 0 |
| 32 | |
| 33 | def on_start(self, event): |
| 34 | event.container.create_receiver(self.url) |
| 35 | |
| 36 | def on_message(self, event): |
| 37 | if event.message.id and event.message.id < self.received: |
nothing calls this directly
no test coverage detected