5
5
"log"
6
6
"net"
7
7
"os"
8
+ "sync"
8
9
9
10
"github.com/pkg/errors"
10
11
"google.golang.org/grpc"
@@ -19,8 +20,10 @@ const (
19
20
)
20
21
21
22
var (
22
- logger = log .New (os .Stdout , "" , 0 )
23
- _ Client = (* GRPCClient )(nil )
23
+ logger = log .New (os .Stdout , "" , 0 )
24
+ _ Client = (* GRPCClient )(nil )
25
+ defaultClient Client
26
+ doOnce sync.Once
24
27
)
25
28
26
29
// Client is the interface for Dapr client implementation.
@@ -71,12 +74,25 @@ type Client interface {
71
74
}
72
75
73
76
// NewClient instantiates Dapr client using DAPR_GRPC_PORT environment variable as port.
77
+ // Note, this default factory function creates Dapr client only once. All subsequent invocations
78
+ // will return the already created instance. To create multiple instances of the Dapr client,
79
+ // use one of the parameterized factory functions:
80
+ // NewClientWithPort(port string) (client Client, err error)
81
+ // NewClientWithAddress(address string) (client Client, err error)
82
+ // NewClientWithConnection(conn *grpc.ClientConn) Client
74
83
func NewClient () (client Client , err error ) {
75
84
port := os .Getenv (daprPortEnvVarName )
76
85
if port == "" {
77
86
port = daprPortDefault
78
87
}
79
- return NewClientWithPort (port )
88
+ var onceErr error
89
+ doOnce .Do (func () {
90
+ c , err := NewClientWithPort (port )
91
+ onceErr = errors .Wrap (err , "error creating default client" )
92
+ defaultClient = c
93
+ })
94
+
95
+ return defaultClient , onceErr
80
96
}
81
97
82
98
// NewClientWithPort instantiates Dapr using specific port.
0 commit comments