micro/client/rpc_request.go

34 lines
603 B
Go
Raw Normal View History

2015-01-14 02:31:27 +03:00
package client
2015-05-23 19:40:53 +03:00
type rpcRequest struct {
2015-05-23 13:53:40 +03:00
service string
method string
contentType string
request interface{}
2015-01-14 02:31:27 +03:00
}
2015-05-23 19:40:53 +03:00
func newRpcRequest(service, method string, request interface{}, contentType string) Request {
return &rpcRequest{
2015-01-14 02:31:27 +03:00
service: service,
method: method,
request: request,
contentType: contentType,
}
}
2015-05-23 19:40:53 +03:00
func (r *rpcRequest) ContentType() string {
2015-01-14 02:31:27 +03:00
return r.contentType
}
2015-05-23 19:40:53 +03:00
func (r *rpcRequest) Service() string {
2015-01-14 02:31:27 +03:00
return r.service
}
2015-05-23 19:40:53 +03:00
func (r *rpcRequest) Method() string {
2015-01-14 02:31:27 +03:00
return r.method
}
2015-05-23 19:40:53 +03:00
func (r *rpcRequest) Request() interface{} {
2015-01-14 02:31:27 +03:00
return r.request
}