grpc.rst.txt 722 B

123456789101112131415161718192021222324252627282930313233343536
  1. grpc package
  2. ============
  3. Subpackages
  4. -----------
  5. .. toctree::
  6. grpc.beta
  7. grpc.framework
  8. Module contents
  9. ---------------
  10. .. automodule:: grpc
  11. :members:
  12. :undoc-members:
  13. :show-inheritance:
  14. Glossary
  15. ================
  16. .. glossary::
  17. metadatum
  18. A key-value pair included in the HTTP header. It is a
  19. 2-tuple where the first entry is the key and the
  20. second is the value, i.e. (key, value). The metadata key is an ASCII str,
  21. and must be a valid HTTP header name. The metadata value can be
  22. either a valid HTTP ASCII str, or bytes. If bytes are provided,
  23. the key must end with '-bin', i.e.
  24. ``('binary-metadata-bin', b'\x00\xFF')``
  25. metadata
  26. A sequence of metadatum.