| 120 | } |
| 121 | |
| 122 | type syncStreamIDGenerator struct { |
| 123 | current uint64 |
| 124 | } |
| 125 | |
| 126 | func (gen *syncStreamIDGenerator) next() StreamID { |
| 127 | return StreamID(fmt.Sprintf("%d", atomic.AddUint64(&gen.current, 1))) |
nothing calls this directly
no outgoing calls
no test coverage detected