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.