|
def | run |
|
def | run_async |
|
def | __getstate__ |
|
def | __eq__ |
|
def | __ne__ |
|
A base class for query implementations.
def google.appengine.datastore.datastore_query._BaseQuery.run |
( |
|
self, |
|
|
|
conn, |
|
|
|
query_options = None |
|
) |
| |
Runs the query using provided datastore_rpc.Connection.
Args:
conn: The datastore_rpc.Connection to use
query_options: Optional query options to use
Returns:
A Batcher that implicitly fetches query results asynchronously.
Raises:
datastore_errors.BadArgumentError if any of the arguments are invalid.
def google.appengine.datastore.datastore_query._BaseQuery.run_async |
( |
|
self, |
|
|
|
conn, |
|
|
|
query_options = None |
|
) |
| |
Runs the query using the provided datastore_rpc.Connection.
Args:
conn: the datastore_rpc.Connection on which to run the query.
query_options: Optional QueryOptions with which to run the query.
Returns:
An async object that can be used to grab the first Batch. Additional
batches can be retrieved by calling Batch.next_batch/next_batch_async.
Raises:
datastore_errors.BadArgumentError if any of the arguments are invalid.
The documentation for this class was generated from the following file:
- code/googleappengine-read-only/python/google/appengine/datastore/datastore_query.py