reset clears the contents of the offsetStash.
()
| 185 | |
| 186 | // reset clears the contents of the offsetStash. |
| 187 | func (o offsetStash) reset() { |
| 188 | for key := range o { |
| 189 | delete(o, key) |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | // commitLoopImmediate handles each commit synchronously. |
| 194 | func (r *Reader) commitLoopImmediate(ctx context.Context, gen *Generation) { |
no outgoing calls
no test coverage detected