Close closes the iterator and frees up resources.
()
| 134 | |
| 135 | // Close closes the iterator and frees up resources. |
| 136 | func (iter *ObjectIter) Close() { |
| 137 | close(iter.oidCh) |
| 138 | } |
| 139 | |
| 140 | // Next returns either the next object (its OID, type, and size), or a |
| 141 | // `false` boolean value to indicate that there are no data left. |
no outgoing calls
no test coverage detected