| 94 | }; |
| 95 | |
| 96 | static void* process_thread(void* args) { |
| 97 | AsyncJob* job = static_cast<AsyncJob*>(args); |
| 98 | job->run_and_delete(); |
| 99 | return NULL; |
| 100 | } |
| 101 | |
| 102 | // Your implementation of example::EchoService |
| 103 | class EchoServiceWithThreadAndSessionLocal : public example::EchoService { |
nothing calls this directly
no test coverage detected