You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to be able to generate my own request IDs on the client. Currently this is done by RequestIdManager, which monotonically increases IDs by 1 for each request. I'm writing a CLI application. This application does precisely one RPC call before exiting. This means that for every invocation of the CLI application the request ID is 0, which is kind of meaningless.
It'd be nice to be able to specify my own request ID creator, in which I could generate a random number that actually would give each request a unique identifier.