Apply this read preference to Selection.
(self, selection: Selection)
| 472 | super().__init__(_NEAREST, tag_sets, max_staleness, hedge) |
| 473 | |
| 474 | def __call__(self, selection: Selection) -> Selection: |
| 475 | """Apply this read preference to Selection.""" |
| 476 | return member_with_tags_server_selector( |
| 477 | self.tag_sets, max_staleness_selectors.select(self.max_staleness, selection) |
| 478 | ) |
| 479 | |
| 480 | |
| 481 | class _AggWritePref: |
nothing calls this directly
no test coverage detected