Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(591)

Unified Diff: service/taskqueue/interface.go

Issue 1890983004: service/taskqueue: Add NewPOSTTask, remove NewTask (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/gae@master
Patch Set: Zero value. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « impl/memory/taskqueue_test.go ('k') | service/taskqueue/task.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: service/taskqueue/interface.go
diff --git a/service/taskqueue/interface.go b/service/taskqueue/interface.go
index b7ff6b4fc2b9beecfeedb798f54ca6d0412ab077..becbb2a9061c5df7bd9a56a2dc4e7f7fc442439b 100644
--- a/service/taskqueue/interface.go
+++ b/service/taskqueue/interface.go
@@ -6,11 +6,6 @@ package taskqueue
// Interface is the full interface to the Task Queue service.
type Interface interface {
- // NewTask simply creates a new Task object with the Path field populated.
- // The path parameter may be blank, if you want to use the default task path
- // ("/_ah/queue/<queuename>").
- NewTask(path string) *Task
-
Add(task *Task, queueName string) error
Delete(task *Task, queueName string) error
« no previous file with comments | « impl/memory/taskqueue_test.go ('k') | service/taskqueue/task.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698