Identical to datastore.AllocateIds() except returns an asynchronous object.
Call get_result() on the return value to block on the call and get the
results.
Returns
An async (start, end) of the allocated range, inclusive.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2022-09-30 UTC."],[[["This function `AllocateIdsAsync` asynchronously allocates a range of IDs within the Google App Engine datastore."],["It mirrors the functionality of `AllocateIds` but operates asynchronously, enabling non-blocking execution."],["To retrieve the allocated ID range, you must call the `get_result()` method on the object returned."],["The function returns an asynchronous object containing a tuple of `(start, end)` representing the allocated range of IDs."]]],[]]