Skip to content

Commit

Permalink
net/rpc: move frozen notice to the start of the package doc
Browse files Browse the repository at this point in the history
For #71559

Change-Id: I68b9518a26cab75789d596839267abab7997bc2c
Reviewed-on: https://go-review.googlesource.com/c/go/+/646575
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Rob Pike <r@golang.org>
Auto-Submit: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Commit-Queue: Ian Lance Taylor <iant@google.com>
  • Loading branch information
ianlancetaylor authored and gopherbot committed Feb 5, 2025
1 parent be2b809 commit 842e4b5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/net/rpc/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

/*
Package rpc provides access to the exported methods of an object across a
network or other I/O connection. A server registers an object, making it visible
network or other I/O connection.
The net/rpc package is frozen and is not accepting new features.
A server registers an object, making it visible
as a service with the name of the type of the object. After registration, exported
methods of the object will be accessible remotely. A server may register multiple
objects (services) of different types but it is an error to register multiple
Expand Down Expand Up @@ -121,8 +125,6 @@ or
A server implementation will often provide a simple, type-safe wrapper for the
client.
The net/rpc package is frozen and is not accepting new features.
*/
package rpc

Expand Down

0 comments on commit 842e4b5

Please sign in to comment.