Stopper is an optional interface, that when implemented, allows an object to have a callback executed when the server is shutting down.
| 202 | // Stopper is an optional interface, that when implemented, allows an object |
| 203 | // to have a callback executed when the server is shutting down. |
| 204 | type Stopper interface { |
| 205 | Stop() |
| 206 | } |
| 207 | |
| 208 | // Register registers the given object as an RPC receiver. |
| 209 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…