| 258 | |
| 259 | // Options to control the behavior of a route. |
| 260 | struct RouteOptions |
| 261 | { |
| 262 | RouteOptions() |
| 263 | : requestStreaming(false) {} |
| 264 | |
| 265 | // Set to true if the endpoint supports request streaming. |
| 266 | // Default: false. |
| 267 | bool requestStreaming; |
| 268 | }; |
| 269 | |
| 270 | /** |
| 271 | * Sets up a handler for HTTP requests with the specified name. |
no outgoing calls
no test coverage detected