-
Notifications
You must be signed in to change notification settings - Fork 223
/
send.go
46 lines (37 loc) · 1.08 KB
/
send.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package notify
import (
"context"
"errors"
"golang.org/x/sync/errgroup"
)
// send calls the underlying notification services to send the given subject and message to their respective endpoints.
func (n *Notify) send(ctx context.Context, subject, message string) error {
if n.Disabled {
return nil
}
if ctx == nil {
ctx = context.Background()
}
var eg errgroup.Group
for _, service := range n.notifiers {
if service == nil {
continue
}
eg.Go(func() error {
return service.Send(ctx, subject, message)
})
}
err := eg.Wait()
if err != nil {
err = errors.Join(ErrSendNotification, err)
}
return err
}
// Send calls the underlying notification services to send the given subject and message to their respective endpoints.
func (n *Notify) Send(ctx context.Context, subject, message string) error {
return n.send(ctx, subject, message)
}
// Send calls the underlying notification services to send the given subject and message to their respective endpoints.
func Send(ctx context.Context, subject, message string) error {
return std.Send(ctx, subject, message)
}