1
0
mirror of https://github.com/containrrr/watchtower.git synced 2024-12-12 09:04:17 +02:00

Fixing function documentation

This commit is contained in:
Rodrigo Damazio Bovendorp 2017-10-29 23:45:01 -07:00
parent 5adb143f62
commit d8586e79ca

View File

@ -10,10 +10,12 @@ type typeNotifier interface {
SendNotification()
}
// Notifier can send log output as notification to admins, with optional batching.
type Notifier struct {
types []typeNotifier
}
// NewNotifier creates and returns a new Notifier, using global configuration.
func NewNotifier(c *cli.Context) *Notifier {
n := &Notifier{}
@ -33,12 +35,14 @@ func NewNotifier(c *cli.Context) *Notifier {
return n
}
// StartNotification starts a log batch. Notifications will be accumulated after this point and only sent when SendNotification() is called.
func (n *Notifier) StartNotification() {
for _, t := range n.types {
t.StartNotification()
}
}
// SendNotification sends any notifications accumulated since StartNotification() was called.
func (n *Notifier) SendNotification() {
for _, t := range n.types {
t.SendNotification()