remove clientCodec

This commit is contained in:
Asim Aslam 2019-01-09 17:33:28 +00:00
parent d004c9624b
commit 1561ccbc14
2 changed files with 1 additions and 7 deletions

View File

@ -45,12 +45,6 @@ type readWriteCloser struct {
rbuf *bytes.Buffer rbuf *bytes.Buffer
} }
type clientCodec interface {
Write(*request, interface{}) error
Read(*response, interface{}) error
Close() error
}
type request struct { type request struct {
Service string Service string
ServiceMethod string // format: "Service.Method" ServiceMethod string // format: "Service.Method"

View File

@ -13,7 +13,7 @@ type rpcStream struct {
closed chan bool closed chan bool
err error err error
request Request request Request
codec clientCodec codec *rpcCodec
context context.Context context context.Context
} }