如果我调用如下所示的异步数据存储操作,但随后结束请求而不调用 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