2015-05-17 18:10:43 +00:00
|
|
|
package bus
|
2015-04-08 05:46:05 +00:00
|
|
|
|
2015-05-06 02:46:26 +00:00
|
|
|
const (
|
|
|
|
EventRepo = "repo"
|
|
|
|
EventUser = "user"
|
|
|
|
EventAgent = "agent"
|
|
|
|
)
|
2015-04-08 05:46:05 +00:00
|
|
|
|
|
|
|
type Event struct {
|
2015-05-06 02:46:26 +00:00
|
|
|
Kind string
|
|
|
|
Name string
|
|
|
|
Msg []byte
|
2015-04-08 05:46:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Bus interface {
|
|
|
|
Subscribe(chan *Event)
|
|
|
|
Unsubscribe(chan *Event)
|
|
|
|
Send(*Event)
|
|
|
|
}
|