aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/end2end/async_end2end_test.cc
Commit message (Collapse)AuthorAge
...
* Comments and a minor fixGravatar Sree Kuchibhotla2016-01-29
|
* Use the same completion queue for both client and serverGravatar Sree Kuchibhotla2016-01-29
|
* Sync server end2end and async_end2end testsGravatar Sree Kuchibhotla2016-01-28
|
* merge with headGravatar yang-g2016-01-14
|\
| * FormatCodeGravatar Sree Kuchibhotla2016-01-13
| |
| * Rename TestService to EchoTestService to prevent name-conflict withGravatar Sree Kuchibhotla2016-01-13
| | | | | | | | 'TestService' in test.proto
* | merge with headGravatar yang-g2016-01-13
|\|
| * Updated copyrightsGravatar murgatroid992016-01-12
| |
* | Exploratory refactoring for mixed sync/async methods on the same C++ serviceGravatar Craig Tiller2016-01-07
| |
| * Merge github.com:grpc/grpc into proto_namesGravatar Craig Tiller2016-01-06
| |\ | |/ |/|
* | Eliminate gpr_ int types - and insist on C99 variants insteadGravatar Craig Tiller2015-12-22
| |
| * Consolidate C++ proto files under src/protoGravatar Craig Tiller2015-12-17
|/ | | | | | - make the directory structure match the package structure - sanitize the package structure (test --> testing) - add auto-detection of proto file dependencies
* clang-format after last weeks test-festGravatar Craig Tiller2015-12-14
|
* Cover an unsupported case of mixing sync and async service in same serverGravatar vjpai2015-12-09
|
* Fixing Cpp tests.Gravatar Julien Boeuf2015-10-12
|
* Removing pessimizing moves.Gravatar Nicolas "Pixel" Noble2015-09-02
| | | | These have been reported by a (very recent) build of clang and its new -Wpessimizing-move option.
* Fixing headers and paths after merge with upstream.Gravatar Julien Boeuf2015-08-30
|
* Shuffling headers around.Gravatar Julien Boeuf2015-08-28
|
* implementation fixGravatar yang-g2015-08-27
|
* implGravatar yang-g2015-08-25
|
* merge with headGravatar yang-g2015-08-24
|\
* | headers reorgGravatar yang-g2015-08-21
| |
* | Remove ChannelInterface and replace it with ChannelGravatar yang-g2015-08-19
| |
* | clang-format all sourceGravatar Craig Tiller2015-08-18
| |
| * Merge github.com:grpc/grpc into y12kdm3Gravatar Craig Tiller2015-08-17
| |\ | |/ |/|
* | Use a sync service to handle requests to unknown servicesGravatar yang-g2015-08-13
| |
| * Add a test of non-blocking API behaviorGravatar Craig Tiller2015-08-06
| | | | | | | | ... also fix things that were broken :)
| * Working towards a non-blocking API testGravatar Craig Tiller2015-08-06
|/
* Add AsyncNotifyWhenDoneGravatar yang-g2015-08-04
|
* Make tests a little more robustGravatar Craig Tiller2015-07-18
|
* Merge branch 'you-complete-me' into we-dont-need-no-backupGravatar Craig Tiller2015-06-17
|\
| * Update the Status APIGravatar Yang Gao2015-06-16
| |
* | Fix async end2end to poll all fds from the main threadGravatar Craig Tiller2015-05-13
|/
* Merge pull request #1493 from ↵Gravatar Yang Gao2015-05-12
|\ | | | | | | | | ctiller/churn-churn-churn-the-api-gently-down-the-stream Completion queue binding for new requests API change
* \ Merge pull request #1494 from ctiller/the-churneningGravatar Yang Gao2015-05-11
|\ \ | | | | | | Lose redundant tag on unary calls
| | * Merge github.com:grpc/grpc into churn-churn-churn-the-api-gently-down-the-streamGravatar Craig Tiller2015-05-08
| | |\ | |_|/ |/| | | | | | | | Conflicts: test/cpp/end2end/async_end2end_test.cc
* | | Increase test timeoutGravatar Craig Tiller2015-05-08
| | |
| * | Fix testGravatar Craig Tiller2015-05-06
| | |
| * | Lose redundant tag on unary callsGravatar Craig Tiller2015-05-06
|/ /
| * Completion queue binding for new requests API changeGravatar Craig Tiller2015-05-06
|/ | | | | Move completion queue binding for new requests to the new request request time, not server instantiation time.
* Merge branch 'master' of github.com:grpc/grpc into the-purge-2Gravatar Nicolas "Pixel" Noble2015-04-24
|\ | | | | | | | | Conflicts: include/grpc++/completion_queue.h
| * Add a GrpcLibrary class to wrap grpc_init and grpc_shutdown and convert all ↵Gravatar Yang Gao2015-04-24
| | | | | | | | the tests to init/shutdown free.
* | Merge branch 'master' of https://github.com/grpc/grpc into the-purge-2Gravatar Nicolas "Pixel" Noble2015-04-11
|\| | | | | | | | | | | | | Conflicts: test/cpp/end2end/async_end2end_test.cc test/cpp/end2end/end2end_test.cc test/cpp/interop/client.cc
| * Splitting gRPC service class codegen into its own set of files.Gravatar Nicolas "Pixel" Noble2015-04-09
| |
* | Removing a few more references to #include <chrono>Gravatar Nicolas "Pixel" Noble2015-04-08
| |
* | Refactoring std::chrono out.Gravatar Nicolas Noble2015-04-08
|/
* Make string construction explicit as implicit conversion doesn't work in 4.4Gravatar Vijay Pai2015-03-26
|
* Clean up unneeded includes and remove shutdown protobuf libraryGravatar Yang Gao2015-03-25
|
* Merge pull request #1093 from nicolasnoble/windowsGravatar Jan Tattermusch2015-03-19
|\ | | | | Various Windows fixes.
| * Various Windows fixes.Gravatar Nicolas Noble2015-03-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | -) using dupenv_s instead of getenv_s and calling strdup ourselves. -) few impossible-to-obtain if checks. -) various signed/unsigned casting. -) using time_t instead of time32_t -) checking output of FormatMessage for failures. -) don't redefine _WIN32_WINNT without undefining it first. -) fixed msvc's interlocked casting. -) renamed AddPort to AddListeningPort. -) added protobuf's third_party includes to search path. -) added a missing definition for inet_ntop in mingw32. -) removed useless declarations.