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
/* | |
* | |
* Copyright 2015, Google Inc. | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions are | |
* met: | |
* | |
* * Redistributions of source code must retain the above copyright |
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
// Create the main listener. | |
lis, err := net.Listen("tcp", ":23456") | |
if err != nil { | |
log.Fatal(err) | |
} | |
// Create a cmux. | |
mux := cmux.New(lis) | |
// Match connections in order: |
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, | |
}) |
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
// AckHTTPHandler provides the HTTP endpoint for acknowledging tasks. | |
type AckHTTPHandler httpHandler | |
func (h *AckHTTPHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | |
vars := mux.Vars(r) | |
q, ok := vars["queue"] | |
if !ok { | |
http.Error(w, "unkown queue", http.StatusBadRequest) | |
return | |
} |
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
// DeQHTTPHandler provides the HTTP endpoint for dequeuing tasks. | |
type DeQHTTPHandler httpHandler | |
func (h *DeQHTTPHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | |
q, ok := mux.Vars(r)["queue"] | |
if !ok { | |
http.Error(w, "unkown queue", http.StatusBadRequest) | |
return | |
} |
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
type httpHandler struct { | |
Hive beehive.Hive // Hive represents the hive our handler is registered on. | |
} | |
// EnQHTTPHandler provides the HTTP endpoint for enqueuing tasks. | |
type EnQHTTPHandler httpHandler | |
func (h *EnQHTTPHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | |
q, ok := mux.Vars(r)["queue"] | |
if !ok { |
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
func main() { | |
h := beehive.NewHive() | |
taskq.RegisterTaskQ(h) | |
go h.Start() | |
defer h.Stop() | |
q := taskq.Queue("MyQueue") | |
b := "copy f1 to f2" | |
enq := taskq.Enque{Task: taskq.Task{Queue: q, Body: []byte(b)}} |
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
func main() { | |
h := beehive.NewHive() | |
taskq.RegisterTaskQ(h) | |
glog.Info("taskq started") | |
h.Start() | |
} |
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, | |
}) |
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
app := beehive.NewApp("taskq") | |
app.Handle(Enque{}, EnQHandler{}) | |
app.Handle(Deque{}, DeQHandler{}) | |
app.Handle(Ack{}, AckHandler{}) | |
app.Handle(Timeout{}, TimeoutHandler{ | |
ExpDur: 60 * time.Second, | |
}) | |
// Detached runs a local go-routine, and NewTimer | |
// creates a "detached" handler that calls the function |
NewerOlder