-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docs): add async note to docs (#984)
- Loading branch information
1 parent
678a06c
commit a91fcb5
Showing
4 changed files
with
39 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,8 +34,16 @@ remaining exclusively in the existing synchronous client. | |
Feedback and bug reports are welcome at [email protected], | ||
or through the Github `issue tracker`_. | ||
|
||
|
||
.. note:: | ||
|
||
It is generally not recommended to use the async client in an otherwise synchronous codebase. To make use of asyncio's | ||
performance benefits, the codebase should be designed to be async from the ground up. | ||
|
||
|
||
.. _issue tracker: https://github.com/googleapis/python-bigtable/issues | ||
|
||
|
||
Quick Start | ||
----------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
Bigtable Data Client Async | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
.. note:: | ||
|
||
It is generally not recommended to use the async client in an otherwise synchronous codebase. To make use of asyncio's | ||
performance benefits, the codebase should be designed to be async from the ground up. | ||
|
||
|
||
.. autoclass:: google.cloud.bigtable.data._async.client.BigtableDataClientAsync | ||
:members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
Table Async | ||
~~~~~~~~~~~ | ||
|
||
.. note:: | ||
|
||
It is generally not recommended to use the async client in an otherwise synchronous codebase. To make use of asyncio's | ||
performance benefits, the codebase should be designed to be async from the ground up. | ||
|
||
.. autoclass:: google.cloud.bigtable.data._async.client.TableAsync | ||
:members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters