MockWriter
| 254 | |
| 255 | // MockWriter |
| 256 | type MockWriter struct { |
| 257 | sync.Mutex |
| 258 | IndexMeta map[string][]*BlockMeta |
| 259 | IndexCompactedMeta map[string][]*CompactedBlockMeta |
| 260 | } |
| 261 | |
| 262 | func (m *MockWriter) Write(context.Context, string, uuid.UUID, string, []byte, *CacheInfo) error { |
| 263 | return nil |
nothing calls this directly
no outgoing calls
no test coverage detected