...
1-- input --
2Package gob manages streams of gobs - binary values exchanged between an
3Encoder (transmitter) and a Decoder (receiver). A typical use is
4transporting arguments and results of remote procedure calls (RPCs) such as
5those provided by package "net/rpc".
6
7The implementation compiles a custom codec for each data type in the stream
8and is most efficient when a single Encoder is used to transmit a stream of
9values, amortizing the cost of compilation.
10-- text --
11Package gob manages streams of gobs - binary values exchanged between an Encoder
12(transmitter) and a Decoder (receiver). A typical use is transporting arguments
13and results of remote procedure calls (RPCs) such as those provided by package
14"net/rpc".
15
16The implementation compiles a custom codec for each data type in the stream and
17is most efficient when a single Encoder is used to transmit a stream of values,
18amortizing the cost of compilation.
View as plain text