June 2018
Intermediate to advanced
348 pages
8h 45m
English
The primary implementer of the RxCpp library is Kirk Shoop, who is currently associated with the Microsoft. He wrote a Twitter analysis sample app (https://github.com/kirkshoop/twitter) to demonstrate various facets of reactive programming. One of the things he did as part of the initiative was to write a reactive wrapper over libcurl to implement HTTP GET and POST methods. The authors of this book have extended his code to support the PUT and DELETE methods.
Take a look at the RxCurl library bundled with the source code of this book: (The listing is too big to be included here )
///////////////////////////////// // A Simple program to pull HTTP content // using a Rx wrapper on top of the Libcurl // // ...