forked from yarpc/yarpc-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
73 lines (60 loc) · 1.61 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Code generated by thriftrw-plugin-yarpc
// @generated
package readonlystoreclient
import (
"context"
"go.uber.org/thriftrw/wire"
"go.uber.org/yarpc/api/transport"
"go.uber.org/yarpc/encoding/thrift"
"go.uber.org/yarpc/encoding/thrift/thriftrw-plugin-yarpc/internal/tests/atomic"
"go.uber.org/yarpc/encoding/thrift/thriftrw-plugin-yarpc/internal/tests/common/baseserviceclient"
"go.uber.org/yarpc"
)
// Interface is a client for the ReadOnlyStore service.
type Interface interface {
baseserviceclient.Interface
Integer(
ctx context.Context,
Key *string,
opts ...yarpc.CallOption,
) (int64, error)
}
// New builds a new client for the ReadOnlyStore service.
//
// client := readonlystoreclient.New(dispatcher.ClientConfig("readonlystore"))
func New(c transport.ClientConfig, opts ...thrift.ClientOption) Interface {
return client{
c: thrift.New(thrift.Config{
Service: "ReadOnlyStore",
ClientConfig: c,
}, opts...),
Interface: baseserviceclient.New(c),
}
}
func init() {
yarpc.RegisterClientBuilder(func(c transport.ClientConfig) Interface {
return New(c)
})
}
type client struct {
baseserviceclient.Interface
c thrift.Client
}
func (c client) Integer(
ctx context.Context,
_Key *string,
opts ...yarpc.CallOption,
) (success int64, err error) {
args := atomic.ReadOnlyStore_Integer_Helper.Args(_Key)
var body wire.Value
body, err = c.c.Call(ctx, args, opts...)
if err != nil {
return
}
var result atomic.ReadOnlyStore_Integer_Result
if err = result.FromWire(body); err != nil {
return
}
success, err = atomic.ReadOnlyStore_Integer_Helper.UnwrapResponse(&result)
return
}