(self, event: events.Event)
| 24 | class HttpProxy(layer.Layer): |
| 25 | @expect(events.Start) |
| 26 | def _handle_event(self, event: events.Event) -> layer.CommandGenerator[None]: |
| 27 | child_layer = layer.NextLayer(self.context) |
| 28 | self._handle_event = child_layer.handle_event |
| 29 | yield from child_layer.handle_event(event) |
| 30 | |
| 31 | |
| 32 | class HttpUpstreamProxy(layer.Layer): |
nothing calls this directly
no test coverage detected