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