()
| 218 | } |
| 219 | |
| 220 | func (i *IDGenerator) genID() int64 { |
| 221 | return atomic.AddInt64(&i.id, 1) |
| 222 | } |
| 223 | |
| 224 | // Identifier is an opaque channelz identifier used to expose channelz symbols |
| 225 | // outside of grpc. Currently only implemented by Channel since no other |
no outgoing calls
no test coverage detected