I have a task which takes a while to execute, and I would like to launch it and broadcast its progress through a Rest request as described here. I've set up a listener with Client progress polling with CPPRestSDK , but I can't figure out a way of doing this?
I've seen web::http::http_request::set_progress_handler but I can only see a way to use that if I set up a websocket to push the progress to the client. But I would prefer to monitor progress from the client using polling. A solution is explained here but I can't see how I could implement that with this lib.