(ctx context.Context, key string, value []byte)
| 135 | return r.Storage.Stat(ctx, key) |
| 136 | } |
| 137 | func (r *recordingStorage) Store(ctx context.Context, key string, value []byte) error { |
| 138 | r.record("Store", key) |
| 139 | return r.Storage.Store(ctx, key, value) |
| 140 | } |
| 141 | func (r *recordingStorage) Unlock(ctx context.Context, name string) error { |
| 142 | r.record("Unlock", name) |
| 143 | return r.Storage.Unlock(ctx, name) |