Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Materialized View 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.MaterializedViewAsync
:members:
:inherited-members:
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Sync Surface
sync_data_client
sync_data_table
sync_data_authorized_view
sync_data_materialized_view
sync_data_mutations_batcher
sync_data_execute_query_iterator

Expand All @@ -22,6 +23,7 @@ Async Surface
async_data_client
async_data_table
async_data_authorized_view
async_data_materialized_view
async_data_mutations_batcher
async_data_execute_query_iterator

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Materialized View
~~~~~~~~~~~~~~~~~

.. autoclass:: google.cloud.bigtable.data._sync_autogen.client.MaterializedView
:members:
:inherited-members:
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from google.cloud.bigtable.data._async.client import (
AuthorizedViewAsync,
BigtableDataClientAsync,
MaterializedViewAsync,
TableAsync,
)
from google.cloud.bigtable.data._async.mutations_batcher import MutationsBatcherAsync
Expand All @@ -33,6 +34,7 @@
from google.cloud.bigtable.data._sync_autogen.client import (
AuthorizedView,
BigtableDataClient,
MaterializedView,
Table,
)
from google.cloud.bigtable.data._sync_autogen.mutations_batcher import MutationsBatcher
Expand Down Expand Up @@ -80,10 +82,12 @@
"BigtableDataClientAsync",
"TableAsync",
"AuthorizedViewAsync",
"MaterializedViewAsync",
"MutationsBatcherAsync",
"BigtableDataClient",
"Table",
"AuthorizedView",
"MaterializedView",
"MutationsBatcher",
"RowKeySamples",
"ReadRowsQuery",
Expand Down
Loading
Loading