以下に示すような非同期データストア操作を呼び出した後、getを呼び出さずにリクエストを終了すると、どうなりますか?
操作は引き続き実行されますか?操作が実行を完了する前に応答が送信されますか?
AsyncDatastoreService datastore = DatastoreServiceFactory.getAsyncDatastoreService();
Entity entity = new Employee("Employee", "Alfred");
// ... populate entity properties
// Make a sync call via the async interface
datastore.put(key)
//Return response