Update docs for context and timeout

This commit is contained in:
Ken Hibino
2020-02-11 21:59:46 -08:00
parent 39459b4412
commit 133bb6c2c6
2 changed files with 5 additions and 2 deletions

2
doc.go
View File

@@ -45,7 +45,7 @@ Example of a type that implements the Handler interface.
// ...
}
func (h *TaskHandler) ProcessTask(task *asynq.Task) error {
func (h *TaskHandler) ProcessTask(ctx context.Context, task *asynq.Task) error {
switch task.Type {
case "send_email":
id, err := task.Payload.GetInt("user_id")