maxim-yurchuk 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
..
security 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
README.md 81eddc8c0b Restoring authorship annotation for <heretic@yandex-team.ru>. Commit 2 of 2. 3 лет назад
async_generic_service.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
async_stream.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
async_unary_call.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
byte_buffer.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
call.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
call_hook.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
call_op_set.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
call_op_set_interface.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
callback_common.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
channel_interface.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
client_callback.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
client_context.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
client_interceptor.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
client_unary_call.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
completion_queue.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
completion_queue_tag.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
config.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
config_protobuf.h e10d6638f0 Update cpp-protobuf to 22.5 5 месяцев назад
create_auth_context.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
delegating_channel.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
intercepted_channel.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
interceptor.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
interceptor_common.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
message_allocator.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
metadata_map.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
method_handler.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
method_handler_impl.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
proto_buffer_reader.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
proto_buffer_writer.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
proto_utils.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
rpc_method.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
rpc_service_method.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
serialization_traits.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
server_callback.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
server_callback_handlers.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
server_context.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
server_interceptor.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
server_interface.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
service_type.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
slice.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
status.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
status_code_enum.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
string_ref.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
stub_options.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
sync.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад
sync_stream.h 9731d8a4bb publishFullContrib: true for ydb 4 месяцев назад
time.h cb8e9a6330 feat grpc: update to grpc 1.53.1 1 год назад

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).