Txn implements the Clientv3Facade interface
(ctx context.Context)
| 213 | |
| 214 | // Txn implements the Clientv3Facade interface |
| 215 | func (m *mockKV) Txn(ctx context.Context) clientv3.Txn { |
| 216 | return &mockTxn{ |
| 217 | ctx: ctx, |
| 218 | kv: m, |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | // Compact implements the Clientv3Facade interface |
| 223 | func (m *mockKV) Compact(context.Context, int64, ...clientv3.CompactOption) (*clientv3.CompactResponse, error) { |
no outgoing calls