* Constructs the service instance. */
| 181 | * Constructs the service instance. |
| 182 | */ |
| 183 | HttpService() : |
| 184 | IService(), |
| 185 | m_mutex(), |
| 186 | m_isRunning(false), |
| 187 | m_requestList(), |
| 188 | m_responseList(), |
| 189 | m_jobIdCounter(INVALID_HTTP_JOB_ID), |
| 190 | m_activeJobId(INVALID_HTTP_JOB_ID), |
| 191 | m_workerData(), |
| 192 | m_worker() |
| 193 | { |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Destroys the service instance. |
nothing calls this directly
no outgoing calls
no test coverage detected