• Home
Name Date Size #Lines LOC

..--

security/04-Jul-2025-284

README.mdD04-Jul-20251.2 KiB2217

async_generic_service.hD04-Jul-2025905 284

async_stream.hD04-Jul-2025866 274

async_unary_call.hD04-Jul-2025885 284

byte_buffer.hD04-Jul-2025865 284

call.hD04-Jul-2025833 274

call_hook.hD04-Jul-2025854 284

call_op_set.hD04-Jul-2025862 284

call_op_set_interface.hD04-Jul-2025836 274

callback_common.hD04-Jul-2025881 284

channel_interface.hD04-Jul-2025886 284

client_callback.hD04-Jul-2025878 274

client_context.hD04-Jul-2025869 284

client_interceptor.hD04-Jul-2025893 284

client_unary_call.hD04-Jul-2025886 284

completion_queue.hD04-Jul-2025882 284

completion_queue_tag.hD04-Jul-2025898 284

config.hD04-Jul-2025845 284

config_protobuf.hD04-Jul-20253.9 KiB11375

create_auth_context.hD04-Jul-2025894 284

delegating_channel.hD04-Jul-2025890 284

intercepted_channel.hD04-Jul-2025894 284

interceptor.hD04-Jul-2025865 284

interceptor_common.hD04-Jul-2025890 284

message_allocator.hD04-Jul-2025889 284

metadata_map.hD04-Jul-2025866 284

method_handler.hD04-Jul-2025877 284

method_handler_impl.hD04-Jul-2025782 253

proto_buffer_reader.hD04-Jul-2025897 284

proto_buffer_writer.hD04-Jul-2025897 284

proto_utils.hD04-Jul-2025862 284

rpc_method.hD04-Jul-2025858 284

rpc_service_method.hD04-Jul-2025890 284

serialization_traits.hD04-Jul-2025898 284

server_callback.hD04-Jul-2025878 274

server_callback_handlers.hD04-Jul-2025911 274

server_context.hD04-Jul-2025869 284

server_interceptor.hD04-Jul-2025893 284

server_interface.hD04-Jul-2025877 284

service_type.hD04-Jul-2025866 284

slice.hD04-Jul-2025841 284

status.hD04-Jul-2025845 284

status_code_enum.hD04-Jul-2025920 284

string_ref.hD04-Jul-2025861 284

stub_options.hD04-Jul-2025869 284

sync.hD04-Jul-2025834 284

sync_stream.hD04-Jul-2025862 274

time.hD04-Jul-2025837 284

README.md

1# Welcome to `include/grpcpp/impl/codegen`
2
3## Why is this directory here?
4
5This directory exists so that generated code can include selected files upon
6which it depends without having to depend on the entire gRPC C++ library. This
7is particularly relevant for users of bazel, particularly if they use the
8multi-lingual `proto_library` target type. Generated code that uses this target
9only depends on the gRPC C++ targets associated with these header files, not the
10entire gRPC C++ codebase since that would make the build time of these types of
11targets excessively large (particularly when they are not even C++ specific).
12
13## What should user code do?
14
15User code should *not* include anything from this directory. Only generated code
16and gRPC library code should include contents from this directory. User code
17should instead include contents from the main `grpcpp` directory or its
18accessible subcomponents like `grpcpp/support`. It is possible that we may
19remove this directory altogether if the motivations for its existence are no
20longer strong enough (e.g., if most users migrate away from the `proto_library`
21target type or if the additional overhead of depending on gRPC C++ is not high).
22