-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Timeout implementation #163
base: private-build-rules
Are you sure you want to change the base?
Conversation
First draft of generated satori cpp api Generate cpp grpcs for satori client Generalize git submodule urls wip satori grpc client and test Revert "Merge remote-tracking branch 'origin/private-build-rules' into satori-client-cpp" WIP build test Add dir tree to satori cmake generate cpp api First draft of generated satori cpp api Generate cpp grpcs for satori client Fix libhttpclient builds, rearrange build scripts for easier console builds Private build fixups protobuf + abseil PS5 wip All dependencies built wslay port added NDAed platforms build refactor Fix private builds factory methods Sync protobuf verion in public and private builds Remove unnecesasry compile definition libhttpclient build fixes Windows: align project and vcpkg deps on toolchain used. Fix wslay builds. Update to latest libHttpClient and provide build script for it. Also simplify bunch of build instructions switch to upstream libhttpclient Use aliases where possible for safety, cleanup libhttpclient build scripts GDK support for libhttpclient transport Use winhttp (via libhttpclient) on Windows Mac OSX Universal binary Update CHANGELOG.md Fix iOS builds Fix iphonesimulator builds Fix Linux builds Accurately list transports in README.md Generalize git submodule urls wip satori grpc client and test Revert "Merge remote-tracking branch 'origin/private-build-rules' into satori-client-cpp" WIP build test cmake minor fixes wip generate cpp api First draft of generated satori cpp api Generate cpp grpcs for satori client Generalize git submodule urls wip satori grpc client and test Revert "Merge remote-tracking branch 'origin/private-build-rules' into satori-client-cpp" WIP build test Add dir tree to satori cmake generate cpp api First draft of generated satori cpp api Generate cpp grpcs for satori client Fix libhttpclient builds, rearrange build scripts for easier console builds Private build fixups protobuf + abseil PS5 wip All dependencies built wslay port added NDAed platforms build refactor Fix private builds factory methods Sync protobuf verion in public and private builds Remove unnecesasry compile definition libhttpclient build fixes Windows: align project and vcpkg deps on toolchain used. Fix wslay builds. Update to latest libHttpClient and provide build script for it. Also simplify bunch of build instructions switch to upstream libhttpclient Use aliases where possible for safety, cleanup libhttpclient build scripts GDK support for libhttpclient transport Use winhttp (via libhttpclient) on Windows Mac OSX Universal binary Update CHANGELOG.md Fix iOS builds Fix iphonesimulator builds Fix Linux builds Accurately list transports in README.md Generalize git submodule urls wip satori grpc client and test Revert "Merge remote-tracking branch 'origin/private-build-rules' into satori-client-cpp" WIP build test cmake minor fixes wip wip setup cmake add
Add additional info to Satori Call Get Flags. More defensive json parsing.
I have changed base of this PR to more accurately reflect what is being changed |
@@ -92,6 +92,17 @@ void NHttpClientCppRest::setBaseUri(const std::string& uri) | |||
_client = std::make_unique<http_client>(http_client(FROM_STD_STR(uri))); | |||
} | |||
|
|||
|
|||
|
|||
void NHttpClientCppRest::setTimeout(int seconds) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- seconds might be too coarse
- use explicit std::chrono:: type for duration should be more ergonomic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll double check, but if I'm not wrong, one of the three apis only accepted seconds. But you are right, if I use chrono::duration I can provide to each api the amount it accepts.
…ded' into timeout-impl # Conflicts: # CMakeLists.txt
Client needs satori, so this branch now pulls in the full satori implementation too. I've not changed anything else from the original PR besides commit [555b2c4], but it's not substantial, only a rearrangement and what is necessary to get timeouts inside satori as well. |
impl/httpCppRest/CMakeLists.txt
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cpprestsdk can probably go, AFAIK it is not used on any platform by default anymore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it's not used anywhere. I will remove it on another PR, though, I don't want to cram this one with even more changes.
No description provided.