grpc/include/grpcpp/impl/codegen
AJ Heller ec9451e856 Fix typo in documentation 2021-01-13 11:23:50 -08:00
..
security Replaced grpc::string with std::string 2020-06-29 17:56:36 -07:00
README.md Justify existence of this directory 2020-08-17 11:42:36 -07:00
async_generic_service.h Cleanup generic server contexts 2020-09-19 12:29:32 -07:00
async_stream.h Merge branch 'master' into sync-stream 2020-09-08 15:14:48 -07:00
async_unary_call.h Fix typo in documentation 2021-01-13 11:23:50 -08:00
byte_buffer.h Fix google-explicit-constructor 2020-12-03 19:22:22 -08:00
call.h Revert "Revert "Fold Channel and CompletionQueue from grpc_impl to grpc"" 2020-08-06 20:42:54 -07:00
call_hook.h Move headers from grpc++ to grpcpp 2018-02-15 14:49:34 -08:00
call_op_set.h Fix google-explicit-constructor 2020-12-03 19:22:22 -08:00
call_op_set_interface.h Address reviewer comments. 2018-10-31 01:02:07 -07:00
callback_common.h Fix google-explicit-constructor 2020-12-03 19:22:22 -08:00
channel_interface.h Reduce templating for async client unary call codegen 2020-10-30 14:26:47 -07:00
client_callback.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
client_context.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
client_interceptor.h Move ClientContext from ::grpc_impl to ::grpc 2020-08-11 16:28:50 -07:00
client_unary_call.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
completion_queue.h Fix google-explicit-constructor 2020-12-03 19:22:22 -08:00
completion_queue_tag.h Address reviewer comments 2018-09-11 09:14:57 -07:00
config.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
config_protobuf.h Updated parse_json.cc to rely on config_protobuf.h for protobuf types 2020-12-23 15:55:17 -08:00
core_codegen.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
core_codegen_interface.h Improve logging on API misuse assert 2019-10-16 10:44:10 -07:00
create_auth_context.h Move headers from grpc++ to grpcpp 2018-02-15 14:49:34 -08:00
delegating_channel.h Fix google-explicit-constructor 2020-12-03 19:22:22 -08:00
grpc_library.h Fix google-explicit-constructor 2020-12-03 19:22:22 -08:00
intercepted_channel.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
interceptor.h Replaced grpc::string with std::string 2020-06-29 17:56:36 -07:00
interceptor_common.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
message_allocator.h Add non-experimental:: versions under ifdef 2019-12-04 06:27:41 -08:00
metadata_map.h Replaced grpc::string with std::string 2020-06-29 17:56:36 -07:00
method_handler.h Fix google-explicit-constructor 2020-12-03 19:22:22 -08:00
method_handler_impl.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
proto_buffer_reader.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
proto_buffer_writer.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
proto_utils.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
rpc_method.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
rpc_service_method.h Revert "Revert "Move ServerContext from ::grpc_impl to ::grpc"" 2020-09-02 10:17:00 -07:00
serialization_traits.h Move headers from grpc++ to grpcpp 2018-02-15 14:49:34 -08:00
server_callback.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
server_callback_handlers.h Check for nullptr (deser failure) before destructing included request 2021-01-13 01:33:13 -08:00
server_context.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
server_interceptor.h Revert "Revert "Move ServerContext from ::grpc_impl to ::grpc"" 2020-09-02 10:17:00 -07:00
server_interface.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
service_type.h Fix by clang-tidy 2020-12-03 16:24:19 -08:00
slice.h Fix google-explicit-constructor 2020-12-03 19:22:22 -08:00
status.h Replaced grpc::string with std::string 2020-06-29 17:56:36 -07:00
status_code_enum.h docs: add note about retrying UNAVAILABLE 2019-04-15 12:45:27 -06:00
string_ref.h Fix google-explicit-constructor 2020-12-03 19:22:22 -08:00
stub_options.h Move headers from grpc++ to grpcpp 2018-02-15 14:49:34 -08:00
sync.h Make sure grpc::internal::Mutex has enough space for gpr_mu, std::mutex, and pthread_mutex_t. 2019-04-17 14:35:34 -04:00
sync_stream.h Merge branch 'master' into sync-stream 2020-09-08 15:14:48 -07:00
time.h Fix google-explicit-constructor 2020-12-03 19:22:22 -08:00

README.md

Welcome to include/grpcpp/impl/codegen

Why is this directory here?

This directory exists so that generated code can include selected files upon which it depends without having to depend on the entire gRPC C++ library. This is particularly relevant for users of bazel, particularly if they use the multi-lingual proto_library target type. Generated code that uses this target only depends on the gRPC C++ targets associated with these header files, not the entire gRPC C++ codebase since that would make the build time of these types of targets excessively large (particularly when they are not even C++ specific).

What should user code do?

User code should not include anything from this directory. Only generated code and gRPC library code should include contents from this directory. User code should instead include contents from the main grpcpp directory or its accessible subcomponents like grpcpp/support. It is possible that we may remove this directory altogether if the motivations for its existence are no longer strong enough (e.g., if most users migrate away from the proto_library target type or if the additional overhead of depending on gRPC C++ is not high).