()
| 307 | ) |
| 308 | |
| 309 | func (op KeyValueOp) String() string { |
| 310 | switch op { |
| 311 | case KeyValuePut: |
| 312 | return "KeyValuePutOp" |
| 313 | case KeyValueDelete: |
| 314 | return "KeyValueDeleteOp" |
| 315 | case KeyValuePurge: |
| 316 | return "KeyValuePurgeOp" |
| 317 | default: |
| 318 | return "Unknown Operation" |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | // KeyValueEntry is a retrieved entry for Get or List or Watch. |
| 323 | type KeyValueEntry interface { |
no outgoing calls
no test coverage detected