2015-01-14 02:31:27 +03:00
|
|
|
package client
|
|
|
|
|
2015-05-21 21:24:57 +03:00
|
|
|
import (
|
|
|
|
"github.com/myodc/go-micro/transport"
|
|
|
|
)
|
|
|
|
|
2015-01-14 02:31:27 +03:00
|
|
|
type Client interface {
|
|
|
|
NewRequest(string, string, interface{}) Request
|
|
|
|
NewProtoRequest(string, string, interface{}) Request
|
|
|
|
NewJsonRequest(string, string, interface{}) Request
|
2015-05-21 21:24:57 +03:00
|
|
|
Call(Request, interface{}) error
|
|
|
|
CallRemote(string, string, Request, interface{}) error
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2015-05-21 21:24:57 +03:00
|
|
|
type options struct {
|
|
|
|
transport transport.Transport
|
|
|
|
}
|
|
|
|
|
|
|
|
type Options func(*options)
|
|
|
|
|
2015-01-14 02:31:27 +03:00
|
|
|
var (
|
2015-05-21 21:24:57 +03:00
|
|
|
DefaultClient Client = NewRpcClient()
|
2015-01-14 02:31:27 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func Call(request Request, response interface{}) error {
|
2015-05-21 21:24:57 +03:00
|
|
|
return DefaultClient.Call(request, response)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func CallRemote(address, path string, request Request, response interface{}) error {
|
2015-05-21 21:24:57 +03:00
|
|
|
return DefaultClient.CallRemote(address, path, request, response)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewRequest(service, method string, request interface{}) Request {
|
2015-05-21 21:24:57 +03:00
|
|
|
return DefaultClient.NewRequest(service, method, request)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewProtoRequest(service, method string, request interface{}) Request {
|
2015-05-21 21:24:57 +03:00
|
|
|
return DefaultClient.NewProtoRequest(service, method, request)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewJsonRequest(service, method string, request interface{}) Request {
|
2015-05-21 21:24:57 +03:00
|
|
|
return DefaultClient.NewJsonRequest(service, method, request)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|