(data map[string][]byte, ttl time.Duration)
| 28 | } |
| 29 | |
| 30 | func (t *SpanlessTracingCache) SetMultiAsync(data map[string][]byte, ttl time.Duration) { |
| 31 | t.next.SetMultiAsync(data, ttl) |
| 32 | } |
| 33 | |
| 34 | func (t *SpanlessTracingCache) Set(ctx context.Context, key string, value []byte, ttl time.Duration) error { |
| 35 | return t.next.Set(ctx, key, value, ttl) |
nothing calls this directly
no test coverage detected