addChild adds a child e, whose channelz id is id to child list
(id int64, e entry)
| 29 | type entry interface { |
| 30 | // addChild adds a child e, whose channelz id is id to child list |
| 31 | addChild(id int64, e entry) |
| 32 | // deleteChild deletes a child with channelz id to be id from child list |
| 33 | deleteChild(id int64) |
| 34 | // triggerDelete tries to delete self from channelz database. However, if |
no outgoing calls
no test coverage detected