Start the server method(启动服务器方法)
()
| 12 | type IServer interface { |
| 13 | Start() // Start the server method(启动服务器方法) |
| 14 | Stop() // Stop the server method (停止服务器方法) |
| 15 | Serve() // Start the business service method(开启业务服务方法) |
| 16 | |
| 17 | // Routing feature: register a routing business method for the current service for client link processing use |
no outgoing calls