| 102 | } |
| 103 | |
| 104 | type EncodedObjectIter struct { |
| 105 | db *gorm.DB |
| 106 | namespacePrefix string |
| 107 | objectType plumbing.ObjectType |
| 108 | offset int |
| 109 | limit int |
| 110 | objects []*plumbing.MemoryObject |
| 111 | moreData bool |
| 112 | } |
| 113 | |
| 114 | // IterEncodedObjects returns an iterator for encoded objects stored in Postgres. |
| 115 | func (s *ObjectStorage) IterEncodedObjects(t plumbing.ObjectType) (storer.EncodedObjectIter, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected