Skip to content

Commit

Permalink
feat: deferred client initialization (#69)
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 cbc407c commit 5646643
Show file tree
Hide file tree
Showing 5 changed files with 394 additions and 144 deletions.
Loading

0 comments on commit 5646643

Please sign in to comment.