(prefix []byte, proc StorageProcessor)
| 20 | type PrefixReader interface { |
| 21 | HasPrefix(prefix []byte) bool |
| 22 | ProcessByPrefix(prefix []byte, proc StorageProcessor) error |
| 23 | KeysByPrefix(prefix []byte) [][]byte |
| 24 | FetchByPrefix(prefix []byte) [][]byte |
| 25 | } |
no outgoing calls