natsio/stream.go

34 lines
670 B
Go
Raw Normal View History

2021-10-08 04:23:59 +00:00
package natsio
import (
"errors"
"fmt"
"github.com/nats-io/nats.go"
)
// AddStream add new stream, with default config
func AddStream(name string, subjects []string) error {
// Get info about the stream
stream, err := natsJS.StreamInfo(name)
if err != nil {
msg := fmt.Sprintf("error getting stream info: %s", err.Error())
return errors.New(msg)
}
// If stream not found, create new
if stream == nil {
_, err = natsJS.AddStream(&nats.StreamConfig{
Name: name,
Subjects: subjects,
Storage: nats.FileStorage,
})
if err != nil {
msg := fmt.Sprintf("add stream error: %s", err.Error())
return errors.New(msg)
}
}
return nil
}