You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
504 B
Go
27 lines
504 B
Go
package internal
|
|
|
|
import (
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/balancer/roundrobin"
|
|
)
|
|
|
|
type DirectClient struct {
|
|
conn *grpc.ClientConn
|
|
}
|
|
|
|
func NewDirectClient(server string, opts ...ClientOption) (*DirectClient, error) {
|
|
opts = append(opts, WithDialOption(grpc.WithBalancerName(roundrobin.Name)))
|
|
conn, err := dial(server, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &DirectClient{
|
|
conn: conn,
|
|
}, nil
|
|
}
|
|
|
|
func (c *DirectClient) Conn() *grpc.ClientConn {
|
|
return c.conn
|
|
}
|