You've already forked watchtower
mirror of
https://github.com/containrrr/watchtower.git
synced 2025-07-12 23:50:20 +02:00
Fixing function documentation
This commit is contained in:
@ -10,10 +10,12 @@ type typeNotifier interface {
|
|||||||
SendNotification()
|
SendNotification()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Notifier can send log output as notification to admins, with optional batching.
|
||||||
type Notifier struct {
|
type Notifier struct {
|
||||||
types []typeNotifier
|
types []typeNotifier
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewNotifier creates and returns a new Notifier, using global configuration.
|
||||||
func NewNotifier(c *cli.Context) *Notifier {
|
func NewNotifier(c *cli.Context) *Notifier {
|
||||||
n := &Notifier{}
|
n := &Notifier{}
|
||||||
|
|
||||||
@ -33,12 +35,14 @@ func NewNotifier(c *cli.Context) *Notifier {
|
|||||||
return n
|
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() {
|
func (n *Notifier) StartNotification() {
|
||||||
for _, t := range n.types {
|
for _, t := range n.types {
|
||||||
t.StartNotification()
|
t.StartNotification()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SendNotification sends any notifications accumulated since StartNotification() was called.
|
||||||
func (n *Notifier) SendNotification() {
|
func (n *Notifier) SendNotification() {
|
||||||
for _, t := range n.types {
|
for _, t := range n.types {
|
||||||
t.SendNotification()
|
t.SendNotification()
|
||||||
|
Reference in New Issue
Block a user