Files
scylladb/service
Kamil Braun 3778a816c1 storage_proxy: abstract_read_executor: make certain methods private
The methods `make_mutation_data_request`, `make_data_request`
and `make_digest_request` were marked as protected, but weren't used by
deriving classes. The "API" for deriving classes is encapsulated through
plural versions of these functions, such as `make_mutation_data_requests`
(note the "s" at the end), which send a request to a set of replicas
(rather than a single replica) but also do other important things - like
gathering statistics - hence we don't want the deriving classes to use
them directly.

Marking these singular methods as private communicates the intent more
clearly.
2021-06-08 12:32:47 +03:00
..