Close closes the iterator and frees up resources. Close must be called exactly once.
()
| 138 | // Close closes the iterator and frees up resources. Close must be |
| 139 | // called exactly once. |
| 140 | func (iter *BatchObjectIter) Close() { |
| 141 | close(iter.oidCh) |
| 142 | } |
| 143 | |
| 144 | // Next either returns the next object (its header and contents), or a |
| 145 | // `false` boolean value if no more objects are left. Objects need to |
no outgoing calls
no test coverage detected