About 361 results
Open links in new tab
  1. Tutorials | Protocol Buffers Documentation

    Each tutorial in this section shows you how to implement a simple application using protocol buffers in your favourite language, introducing you to the language’s protocol buffer API as well as showing …

  2. Protocol Buffer Basics: C++ | Protocol Buffers Documentation

    With protocol buffers, you write a .proto description of the data structure you wish to store. From that, the protocol buffer compiler creates a class that implements automatic encoding and parsing of the …

  3. Protocol Buffer Basics: Java | Protocol Buffers Documentation

    The generated class provides getters and setters for the fields that make up a protocol buffer and takes care of the details of reading and writing the protocol buffer as a unit.

  4. Language Guide (proto 3) | Protocol Buffers Documentation

    This guide describes how to use the protocol buffer language to structure your protocol buffer data, including .proto file syntax and how to generate data access classes from your .proto files.

  5. Protocol Buffer Basics: C# | Protocol Buffers Documentation

    Our example is a command-line application for managing an address book data file, encoded using protocol buffers. The command AddressBook (see: Program.cs) can add a new entry to the data file …

  6. Protocol Buffer Basics: Go | Protocol Buffers Documentation

    Our example is a set of command-line applications for managing an address book data file, encoded using protocol buffers. The command add_person_go adds a new entry to the data file.

  7. Language Guide (editions) | Protocol Buffers Documentation

    This guide describes how to use the protocol buffer language to structure your protocol buffer data, including .proto file syntax and how to generate data access classes from your .proto files.

  8. Encoding | Protocol Buffers Documentation - protobuf.dev

    This document describes the protocol buffer wire format, which defines the details of how your message is sent on the wire and how much space it consumes on disk.

  9. Overview | Protocol Buffers Documentation

    Protocol buffers are the most commonly-used data format at Google. They are used extensively in inter-server communications as well as for archival storage of data on disk. Protocol buffer messages and …

  10. ProtoJSON Format | Protocol Buffers Documentation

    ProtoJSON Format Covers how to use the Protobuf to JSON conversion utilities. Protobuf supports a canonical encoding in JSON, making it easier to share data with systems that do not support the …