Added WriteJSON/ReadJSON deprecated methods for backwards compatibility.

This commit is contained in:
Craig Jackson 2013-10-27 11:50:42 -07:00 committed by Gary Burd
parent 8e0dcebbf0
commit 3d66655aaa
2 changed files with 18 additions and 0 deletions

10
json.go
View File

@ -8,6 +8,11 @@ import (
"encoding/json"
)
// DEPRECATED: use c.WriteJSON instead.
func WriteJSON(c *Conn, v interface{}) error {
return c.WriteJSON(v)
}
// WriteJSON writes the JSON encoding of v to the connection.
//
// See the documentation for encoding/json Marshal for details about the
@ -25,6 +30,11 @@ func (c *Conn) WriteJSON(v interface{}) error {
return err2
}
// DEPRECATED: use c.WriteJSON instead.
func ReadJSON(c *Conn, v interface{}) error {
return c.ReadJSON(v)
}
// ReadJSON reads the next JSON-encoded message from the connection and stores
// it in the value pointed to by v.
//

View File

@ -23,10 +23,18 @@ func TestJSON(t *testing.T) {
expect.A = 1
expect.B = "hello"
if err := WriteJSON(wc, &expect); err != nil {
t.Fatal("write", err)
}
if err := wc.WriteJSON(&expect); err != nil {
t.Fatal("write", err)
}
if err := ReadJSON(rc, &expect); err != nil {
t.Fatal("read", err)
}
if err := rc.ReadJSON(&actual); err != nil {
t.Fatal("read", err)
}