(ctx context.Context, name string)
| 127 | return r.Storage.Load(ctx, key) |
| 128 | } |
| 129 | func (r *recordingStorage) Lock(ctx context.Context, name string) error { |
| 130 | r.record("Lock", name) |
| 131 | return r.Storage.Lock(ctx, name) |
| 132 | } |
| 133 | func (r *recordingStorage) Stat(ctx context.Context, key string) (KeyInfo, error) { |
| 134 | r.record("Stat", key) |
| 135 | return r.Storage.Stat(ctx, key) |