(self, event: events.Event)
| 32 | class HttpUpstreamProxy(layer.Layer): |
| 33 | @expect(events.Start) |
| 34 | def _handle_event(self, event: events.Event) -> layer.CommandGenerator[None]: |
| 35 | child_layer = layer.NextLayer(self.context) |
| 36 | self._handle_event = child_layer.handle_event |
| 37 | yield from child_layer.handle_event(event) |
| 38 | |
| 39 | |
| 40 | class DestinationKnown(layer.Layer, metaclass=ABCMeta): |
nothing calls this directly
no test coverage detected