Last active
August 29, 2015 14:25
-
-
Save soheilhy/bb9c655e03230b611034 to your computer and use it in GitHub Desktop.
Register taskq handler (full)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// RegisterTaskQ registers the taskq application and all its handler in the | |
// hive. | |
func RegisterTaskQ(h beehive.Hive) { | |
a := h.NewApp("taskq", beehive.Persistent(3)) | |
a.Handle(Enque{}, EnQHandler{}) | |
a.Handle(Deque{}, DeQHandler{}) | |
a.Handle(Ack{}, AckHandler{}) | |
a.Handle(Timeout{}, TimeoutHandler{ | |
ExpDur: 60 * time.Second, | |
}) | |
a.Detached(beehive.NewTimer(30*time.Second, func() { | |
h.Emit(Timeout(time.Now())) | |
})) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment