added Notifier.Close()

This commit is contained in:
Darko Luketic 2018-07-22 19:51:30 +02:00
parent 3fd7ba0682
commit 5e1eaa73ed

View File

@ -33,9 +33,12 @@ func (n *Notifier) Notify(collection, type_ string, data []byte) {
}
}
func (n *Notifier) Close() {
close(n.channel)
}
type Notification struct {
Collection string `json:"collection"`
Type string `json:"type"`
Data []byte `json:"data,omitempty"`
}