延迟谷歌服务批量请求的序列化执行
有没有一种方法(如果有,最简单的方法是什么)来延迟(或休眠 n 秒)下面每个 x 的批处理请求的执行?
举例来说,我有以下内容:
my_batch=my_service.new_batch_http_request()
for x in Y:
my_batch.add(
my_service.insert( )
)
my_batch.execute()
或者更重要的是:对于 Y 中的每个 x,在服务器端(我的谷歌服务所在的位置)执行之前等待 n 秒。举例来说,我的服务是 google 驱动器、日历或 google new_batch_http_request 可以工作的任何其他服务。
Is there a way (and if so, what is the simplest one) to delay (or sleep for n seconds) the execution of the batch request below, for each x?
Say for example I have the following:
my_batch=my_service.new_batch_http_request()
for x in Y:
my_batch.add(
my_service.insert( )
)
my_batch.execute()
Or even more to the point: for each x in Y, wait n seconds before execution on the server side (where my google service resides). Say for example, my service is google drive, or calendar, or anything else where google new_batch_http_request works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论