micro/client/client.go

118 lines
3.8 KiB
Go
Raw Normal View History

2016-12-14 15:41:48 +00:00
// Package client is an interface for an RPC client
2015-01-13 23:31:27 +00:00
package client
2015-05-21 19:24:57 +01:00
import (
2018-03-03 11:53:52 +00:00
"context"
2016-01-03 21:14:33 +00:00
"time"
2015-05-21 19:24:57 +01:00
)
2016-01-30 21:15:08 +00:00
// Client is the interface used to make requests to services.
// It supports Request/Response via Transport and Publishing via the Broker.
// It also supports bidiectional streaming of requests.
2015-01-13 23:31:27 +00:00
type Client interface {
2016-01-02 19:12:17 +00:00
Init(...Option) error
Options() Options
2018-05-10 17:33:54 +01:00
NewMessage(topic string, msg interface{}, opts ...MessageOption) Message
2015-12-17 20:37:35 +00:00
NewRequest(service, method string, req interface{}, reqOpts ...RequestOption) Request
2015-12-08 19:25:42 +00:00
Call(ctx context.Context, req Request, rsp interface{}, opts ...CallOption) error
2018-04-14 18:15:09 +01:00
Stream(ctx context.Context, req Request, opts ...CallOption) (Stream, error)
2018-04-14 18:06:52 +01:00
Publish(ctx context.Context, msg Message, opts ...PublishOption) error
2015-12-19 21:56:14 +00:00
String() string
}
2018-04-14 18:06:52 +01:00
// Message is the interface for publishing asynchronously
type Message interface {
Topic() string
2018-04-14 18:06:52 +01:00
Payload() interface{}
ContentType() string
}
2016-04-06 17:53:16 +01:00
// Request is the interface for a synchronous request used by Call or Stream
type Request interface {
Service() string
Method() string
ContentType() string
Request() interface{}
2015-12-17 20:37:35 +00:00
// indicates whether the request will be a streaming one rather than unary
Stream() bool
}
2018-04-14 18:15:09 +01:00
// Stream is the inteface for a bidirectional synchronous stream
type Stream interface {
2015-12-17 20:37:35 +00:00
Context() context.Context
Request() Request
2015-12-17 20:37:35 +00:00
Send(interface{}) error
Recv(interface{}) error
Error() error
Close() error
2015-01-13 23:31:27 +00:00
}
2016-04-06 17:53:16 +01:00
// Option used by the Client
type Option func(*Options)
2016-04-06 17:53:16 +01:00
// CallOption used by Call or Stream
type CallOption func(*CallOptions)
2016-04-06 17:53:16 +01:00
// PublishOption used by Publish
type PublishOption func(*PublishOptions)
2016-04-06 17:53:16 +01:00
2018-05-10 17:33:54 +01:00
// MessageOption used by NewMessage
type MessageOption func(*MessageOptions)
2016-04-06 17:53:16 +01:00
// RequestOption used by NewRequest
type RequestOption func(*RequestOptions)
2015-05-21 19:24:57 +01:00
2015-01-13 23:31:27 +00:00
var (
2016-04-06 17:53:16 +01:00
// DefaultClient is a default client to use out of the box
2015-05-23 17:40:53 +01:00
DefaultClient Client = newRpcClient()
2016-04-06 17:53:16 +01:00
// DefaultBackoff is the default backoff function for retries
DefaultBackoff = exponentialBackoff
2016-11-07 09:40:11 +01:00
// DefaultRetry is the default check-for-retry function for retries
DefaultRetry = RetryOnError
2016-04-06 17:53:16 +01:00
// DefaultRetries is the default number of times a request is tried
DefaultRetries = 1
// DefaultRequestTimeout is the default request timeout
2016-01-03 21:14:33 +00:00
DefaultRequestTimeout = time.Second * 5
2016-06-07 00:46:14 +01:00
// DefaultPoolSize sets the connection pool size
2018-05-26 09:10:29 +01:00
DefaultPoolSize = 1
2016-06-07 00:46:14 +01:00
// DefaultPoolTTL sets the connection pool ttl
DefaultPoolTTL = time.Minute
2015-01-13 23:31:27 +00:00
)
2018-04-17 11:00:22 +01:00
// Makes a synchronous call to a service using the default client
func Call(ctx context.Context, request Request, response interface{}, opts ...CallOption) error {
return DefaultClient.Call(ctx, request, response, opts...)
}
// Publishes a publication using the default client. Using the underlying broker
// set within the options.
2018-05-10 17:33:54 +01:00
func Publish(ctx context.Context, msg Message, opts ...PublishOption) error {
return DefaultClient.Publish(ctx, msg, opts...)
2018-04-17 11:00:22 +01:00
}
// Creates a new message using the default client
2018-05-10 17:33:54 +01:00
func NewMessage(topic string, payload interface{}, opts ...MessageOption) Message {
return DefaultClient.NewMessage(topic, payload, opts...)
2018-04-17 11:00:22 +01:00
}
2015-11-26 12:21:00 +00:00
// Creates a new client with the options passed in
func NewClient(opt ...Option) Client {
2015-05-23 17:40:53 +01:00
return newRpcClient(opt...)
}
2018-04-17 11:00:22 +01:00
// Creates a new request using the default client. Content Type will
// be set to the default within options and use the appropriate codec
func NewRequest(service, method string, request interface{}, reqOpts ...RequestOption) Request {
return DefaultClient.NewRequest(service, method, request, reqOpts...)
}
// Creates a streaming connection with a service and returns responses on the
// channel passed in. It's up to the user to close the streamer.
func NewStream(ctx context.Context, request Request, opts ...CallOption) (Stream, error) {
return DefaultClient.Stream(ctx, request, opts...)
}
func String() string {
return DefaultClient.String()
}