| 135 | } |
| 136 | |
| 137 | type EncodedObjectIter struct { |
| 138 | client *redis.Client |
| 139 | namespacePrefix string |
| 140 | t plumbing.ObjectType |
| 141 | cursor uint64 |
| 142 | keys []string |
| 143 | moreData bool |
| 144 | } |
| 145 | |
| 146 | // IterEncodedObjects returns an iterator for encoded objects stored in Redis. |
| 147 | func (s *ObjectStorage) IterEncodedObjects(t plumbing.ObjectType) (storer.EncodedObjectIter, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected