* Get the TServerEventHandler to set on the server. * * This is only called after the server successfully binds and is about to * start serving traffic. It is invoked from the server thread, rather than * the main thread. */
| 53 | * the main thread. |
| 54 | */ |
| 55 | virtual std::shared_ptr<server::TServerEventHandler> getServerEventHandler() { |
| 56 | return std::shared_ptr<server::TServerEventHandler>(); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * This method is called in the server thread after server binding succeeds. |