Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
Andrea Spacca ec086b4eb3 Bump google.golang.org/api pirms 5 gadiem
..
README.md Bump google.golang.org/api pirms 5 gadiem
main.go Bump google.golang.org/api pirms 5 gadiem

README.md

Wait for ready example

This example shows how to enable “wait for ready” in RPC calls.

This code starts a server with a 2 seconds delay. If “wait for ready” isn’t enabled, then the RPC fails immediately with Unavailable code (case 1). If “wait for ready” is enabled, then the RPC waits for the server. If context dies before the server is available, then it fails with DeadlineExceeded (case 3). Otherwise it succeeds (case 2).

Run the example

go run main.go