- Is there a way to guarantee a task to be performed in X minutes (or after X min) ? (rate would mean the intervals between tasks but what about the first task, would the first task starts after the 'rate' time?)
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- __call__() missing 1 required positional argument:
- Upload file to Google Cloud Storage using AngularJ
- Where is the best place to put one-time and every-
- facebook “could not retrieve data from URL”
相关文章
- Is there a size limit for HTTP response headers on
- appcfg.py command not found
- Google app engine datastore string encoding proble
- Angular route not working when used with Google Ap
- Doctrine not finding data on Google App Engine?
- Using OkHttp client via OKClient on Google App Eng
- Google appEngine: 404 when accessing /_ah/api [dup
-
Google App Engine Error:
INVALID_ARGUMENT
Per @Peter Recore's comment, the
countdown
field inadd()
is "Time in seconds into the future that this Task should execute. Defaults to zero."Documentation: https://cloud.google.com/appengine/docs/python/refdocs/google.appengine.api.taskqueue
If you mean 'at least X minutes from now', yes - use the task queue API.
Google has updated this portion of their api (see here). You can now send in a 3rd parameter with PushTask containing the following options:
In PHP
Or more simply (it is a POST by default)
Using TaskQueue API
Now define the job in Index1 class