Method
GetMulti
(ctx context.Context, keys []string, opts ...Option)
Source from the content-addressed store, hash-verified
| 167 | } |
| 168 | |
| 169 | func (m *InstrumentedMockCache) GetMulti(ctx context.Context, keys []string, opts ...Option) map[string][]byte { |
| 170 | m.fetchCount.Inc() |
| 171 | return m.cache.GetMulti(ctx, keys, opts...) |
| 172 | } |
| 173 | |
| 174 | func (m *InstrumentedMockCache) GetMultiWithError(ctx context.Context, keys []string, opts ...Option) (map[string][]byte, error) { |
| 175 | m.fetchCount.Inc() |
Callers
nothing calls this directly
Tested by
no test coverage detected