Add processes a single shard response.
(result interface{}, err error)
| 23 | type ResponseAggregator interface { |
| 24 | // Add processes a single shard response. |
| 25 | Add(result interface{}, err error) error |
| 26 | |
| 27 | // AddWithKey processes a single shard response for a specific key (used by keyed aggregators). |
| 28 | AddWithKey(key string, result interface{}, err error) error |
no outgoing calls