* Constructs the HTTP request. */
| 97 | * Constructs the HTTP request. |
| 98 | */ |
| 99 | WorkerRequest() : |
| 100 | jobId(INVALID_HTTP_JOB_ID), |
| 101 | url(), |
| 102 | method(HTTP_METHOD_GET), |
| 103 | payload(nullptr), |
| 104 | size(0U), |
| 105 | handler(nullptr) |
| 106 | { |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Copy constructor. |
nothing calls this directly
no outgoing calls
no test coverage detected