Documentation ¶
Index ¶
- Variables
- func AuthTLS(t *tls.Config) client.Option
- func CallOptions(opts ...grpc.CallOption) client.CallOption
- func Codec(contentType string, c encoding.Codec) client.Option
- func DialOptions(opts ...grpc.DialOption) client.CallOption
- func MaxRecvMsgSize(s int) client.Option
- func MaxSendMsgSize(s int) client.Option
- func NewClient(opts ...client.Option) client.Client
- func PoolMaxIdle(d int) client.Option
- func PoolMaxStreams(n int) client.Option
- func UserNumber()
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // DefaultPoolMaxStreams maximum streams on a connections (20) DefaultPoolMaxStreams = 20 // DefaultPoolMaxIdle maximum idle conns of a pool (50) DefaultPoolMaxIdle = 50 // DefaultMaxRecvMsgSize maximum message that client can receive (200 MB) DefaultMaxRecvMsgSize = 1024 * 1024 * 200 // DefaultMaxSendMsgSize maximum message that client can send DefaultMaxSendMsgSize = 1024 * 1024 * 200 )
Functions ¶
func CallOptions ¶
func CallOptions(opts ...grpc.CallOption) client.CallOption
CallOptions to be used to configure gRPC call options
func DialOptions ¶
func DialOptions(opts ...grpc.DialOption) client.CallOption
DialOptions to be used to configure gRPC dial options
func MaxRecvMsgSize ¶
MaxRecvMsgSize set the maximum size of message that client can receive
func MaxSendMsgSize ¶
MaxSendMsgSize set the maximum size of message that client can send.
func UserNumber ¶
func UserNumber()
UseNumber fix unmarshal Number(8234567890123456789) to interface(8.234567890123457e+18)
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.