The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Ashitha Santhosh 2bdec04852
Update comment on GRPC_ARG_TSI_MAX_FRAME_SIZE (#31114)
3 years ago
..
README.md Justify existence of this directory 5 years ago
atm.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
atm_gcc_atomic.h [cleanup] Remove low level counters (#30611) 3 years ago
atm_gcc_sync.h [cleanup] Remove low level counters (#30611) 3 years ago
atm_windows.h [cleanup] Remove low level counters (#30611) 3 years ago
byte_buffer.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
byte_buffer_reader.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
compression_types.h [iwyu] Improve iwyu for public headers (#29834) 3 years ago
connectivity_state.h [iwyu] Improve iwyu for public headers (#29834) 3 years ago
fork.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
gpr_slice.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
gpr_types.h [iwyu] Improve iwyu for public headers (#29834) 3 years ago
grpc_types.h Update comment on GRPC_ARG_TSI_MAX_FRAME_SIZE (#31114) 3 years ago
log.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
port_platform.h [tls] Remove support for pthread tls (#31040) 3 years ago
propagation_bits.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
slice.h A starter slice buffer implementation to unblock event engine endpoints (#29367) 3 years ago
status.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
sync.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
sync_abseil.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
sync_custom.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
sync_generic.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago
sync_posix.h Adjust include order per style guide (#27175) 4 years ago
sync_windows.h Annotate impl/codegen with IWYU pragmas (#27252) 4 years ago

README.md

Welcome to include/grpc/impl/codegen

Why is this directory here?

This directory exists so that generated C++ code can include selected files upon which it depends without having to depend on the entire gRPC C++ library. This directory thus exists to support include/grpcpp/impl/codegen. This constraint 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. C++ 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 the gRPC C++ library no longer has a need for an impl/codegen directory of its own).