robot-contrib 33496e3c82 Update contrib/libs/googleapis-common-protos to 1.63.1 7 months ago
..
context 33496e3c82 Update contrib/libs/googleapis-common-protos to 1.63.1 7 months ago
README.md 06e5c21a83 fix ya.make 2 years ago
code.proto 33496e3c82 Update contrib/libs/googleapis-common-protos to 1.63.1 7 months ago
error_details.proto 33496e3c82 Update contrib/libs/googleapis-common-protos to 1.63.1 7 months ago
http.proto 33496e3c82 Update contrib/libs/googleapis-common-protos to 1.63.1 7 months ago
status.proto 33496e3c82 Update contrib/libs/googleapis-common-protos to 1.63.1 7 months ago

README.md

RPC (Remote Procedure Call) Types

This package contains protocol buffer types that represent remote procedure call concepts. While gRPC uses these types, we encourage their use in any interested RPC implementation to promote compatibility and consistency.

Key Concepts

  • Code: An enum that represents an error code returned by an RPC. These error codes map to HTTP codes, but are slightly finer-grained. Every gRPC code has exactly one corresponding HTTP code; however, some HTTP codes have more than one corresponding gRPC code.
  • Error details: Any of the types contained in error_details.proto which provide extra details about particular types of failures.
  • Status: Combines a code, message, and error details to represent the success or failure details of an RPC call.