GRPC Programming Model: Difference between revisions
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
cc.Invoke(ctx, "/blue.service.quota.v1.QuotaService/SomeMethod", in, out, opts) | cc.Invoke(ctx, "/blue.service.quota.v1.QuotaService/SomeMethod", in, out, opts) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Dial Options. |
Revision as of 23:14, 11 July 2024
Internal
Instantiate a GRPC Client
A Client Invocation
The generated typed client contains a cc
reference to google.golang.org/grpc
ClientConn
instance, which implements ClientConnInterface
.
When a typed invocation is made, cc
is invoked as such:
cc.Invoke(ctx, "/blue.service.quota.v1.QuotaService/SomeMethod", in, out, opts)
Dial Options.