Skip to content

Commit

Permalink
feat: deferred client initialization (#230)
Browse files Browse the repository at this point in the history
This PR includes changes from googleapis/gapic-generator-typescript#317
that will move the asynchronous initialization and authentication from the client constructor
to an `initialize()` method. This method will be automatically called when the first RPC call
is performed.

The client library usage has not changed, there is no need to update any code.

If you want to make sure the client is authenticated _before_ the first RPC call, you can do
```js
await client.initialize();
```
manually before calling any client method.
  • Loading branch information
gcf-merge-on-green[bot] committed Mar 6, 2020
1 parent 90aaef3 commit 59ef15f
Show file tree
Hide file tree
Showing 7 changed files with 589 additions and 115 deletions.
Loading

0 comments on commit 59ef15f

Please sign in to comment.