The route callback with all plugins applied. This property is created on demand and then cached to speed up subsequent requests.
(self)
| 493 | |
| 494 | @cached_property |
| 495 | def call(self): |
| 496 | ''' The route callback with all plugins applied. This property is |
| 497 | created on demand and then cached to speed up subsequent requests.''' |
| 498 | return self._make_callback() |
| 499 | |
| 500 | def reset(self): |
| 501 | ''' Forget any cached values. The next time :attr:`call` is accessed, |
no test coverage detected