Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Clang-format all the things | Masood Malekghassemi | 2016-07-12 |
| | |||
* | override->GRPC_OVERRIDE | Vijay Pai | 2016-06-09 |
| | | | | Remove range-based fors | ||
* | merge and resolve conflict | yang-g | 2016-04-26 |
|\ | |||
| * | Some additional fixes to make the C++ codegen not depend on protobuf. | Wouter van Oortmerssen | 2016-04-25 |
| | | |||
* | | Use the comments before syntax line as file comments. | yang-g | 2016-04-15 |
| | | |||
* | | Add comments to the generated header file | yang-g | 2016-04-14 |
|/ | |||
* | Refactored C++ code generator to not directly depend on protobuf. | Wouter van Oortmerssen | 2016-04-13 |
| | | | | | This opens the door for other serializers (such as e.g. FlatBuffers) to share this code generator when using GRPC. | ||
* | Update copyrights | Craig Tiller | 2016-03-31 |
| | |||
* | Factorizing code out. | Nicolas "Pixel" Noble | 2016-03-17 |
| | |||
* | Merge branch 'master' of https://github.com/grpc/grpc into codegen-paths | Nicolas "Pixel" Noble | 2016-03-17 |
|\ | | | | | | | | | Conflicts: src/compiler/cpp_generator.cc | ||
| * | Add a dummy reference to prevent unused variable warning if there is no rpc ↵ | yang-g | 2016-02-10 |
| | | | | | | | | method defined. | ||
| * | DONE!!1one | David Garcia Quintas | 2016-01-27 |
| | | |||
| * | pre sync_stream.cc creation. Does not compile | David Garcia Quintas | 2016-01-25 |
| | | |||
| * | Merge branch 'proto_interfaces' into yang-g-sync_async_mix | David Garcia Quintas | 2016-01-19 |
| |\ | |||
| | * | Introduced ServerInterface | David Garcia Quintas | 2016-01-15 |
| | | | |||
| * | | fix copyright | yang-g | 2016-01-15 |
| | | | |||
| * | | Add generic support | yang-g | 2016-01-15 |
| | | | |||
| | * | WIP. Added ChannelInterface | David Garcia Quintas | 2016-01-13 |
| | | | |||
| * | | Support sync/async methods in the same service | yang-g | 2016-01-13 |
| | | | |||
* | | | Letting the user override the code generation a bit. | Nicolas "Pixel" Noble | 2016-01-12 |
| |/ |/| | | | | | | | | | Example of use: protoc --grpc_out=use_system_headers=false,grpc_search_path=a/b/c/d:path/to/output/... | ||
| * | Exploratory refactoring for mixed sync/async methods on the same C++ service | Craig Tiller | 2016-01-07 |
|/ | |||
* | Some changes required to make C++ code generator plugin work fine for | Vijay Pai | 2015-10-12 |
| | | | | external code compiled under gcc-4.4 : eliminate use of nullptr, primarily. | ||
* | split stream.h into sync_stream.h and async_stream.h | yang-g | 2015-08-21 |
| | |||
* | headers reorg | yang-g | 2015-08-21 |
| | |||
* | remove internal_stub | yang-g | 2015-08-20 |
| | |||
* | make registermethod private | yang-g | 2015-08-20 |
| | |||
* | Remove ChannelInterface and replace it with Channel | yang-g | 2015-08-19 |
| | |||
* | Add StubOptions | yang-g | 2015-08-03 |
| | |||
* | Merge branch 'we-dont-need-no-backup' into one-shouldnt-depend-on-protobufs | Craig Tiller | 2015-06-16 |
|\ | | | | | | | | | | | | | | | | | | | Conflicts: include/grpc++/async_unary_call.h include/grpc++/config.h include/grpc++/config_protobuf.h include/grpc++/impl/service_type.h include/grpc++/stream.h src/cpp/common/call.cc | ||
| * | Update the Status API | Yang Gao | 2015-06-16 |
| | | |||
| * | Flagging unused parameters as unused. | Nicolas "Pixel" Noble | 2015-06-10 |
| | | |||
* | | clang-format | Craig Tiller | 2015-06-05 |
| | | |||
* | | Progress commit on fixing up C++ | Craig Tiller | 2015-06-04 |
|/ | |||
* | make sure printers are properly flushed | Jan Tattermusch | 2015-05-27 |
| | |||
* | Merge pull request #1493 from ↵ | Yang Gao | 2015-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-churnening | Yang Gao | 2015-05-11 |
|\ \ | | | | | | | Lose redundant tag on unary calls | ||
* | | | Fix clang compilation | Craig Tiller | 2015-05-08 |
| | | | |||
| | * | Fix clang compilation | Craig Tiller | 2015-05-08 |
| | | | |||
| * | | Merge github.com:grpc/grpc into the-churnening | Craig Tiller | 2015-05-08 |
| |\ \ | |/ / |/| | | |||
| | * | Merge github.com:grpc/grpc into churn-churn-churn-the-api-gently-down-the-stream | Craig Tiller | 2015-05-08 |
| | |\ | |_|/ |/| | | |||
| * | | Lose redundant tag on unary calls | Craig Tiller | 2015-05-06 |
| | | | |||
| | * | Completion queue binding for new requests API change | Craig Tiller | 2015-05-06 |
| |/ | | | | | | | | | Move completion queue binding for new requests to the new request request time, not server instantiation time. | ||
* | | Merge remote-tracking branch 'upstream/master' into mock | Yang Gao | 2015-05-05 |
|\| | |||
* | | Add full codegen for clientside stub interface | Yang Gao | 2015-05-05 |
| | | |||
| * | Fixing generated code under Windows. | Nicolas "Pixel" Noble | 2015-05-02 |
| | | | | | | | | | | | | By the standard, std::function can only capture class functions, and not class methods. For some reasons, this works under gcc however. Visual Studio rejects it. std::mem_fn is proper template to use. | ||
* | | generate a StubInterface | Yang Gao | 2015-05-01 |
|/ | |||
* | clang-format | Craig Tiller | 2015-04-16 |
| | |||
* | Populate channel tags for methods | Craig Tiller | 2015-04-16 |
| | |||
* | Precreate RpcMethod instances | Craig Tiller | 2015-04-16 |
| | |||
* | When the proto file does not contain a package, do not generate namespace | Yang Gao | 2015-04-10 |
| |