add method PublishWithResponse

This commit is contained in:
Nam Huynh 2021-12-02 09:32:45 +07:00
parent 374a616387
commit 38aaf70405
1 changed files with 12 additions and 0 deletions

View File

@ -19,6 +19,18 @@ func Publish(stream, subject string, payload []byte) error {
return nil return nil
} }
// PublishWithResponse ...
func PublishWithResponse(stream, subject string, payload []byte) (*nats.Msg, error) {
channel := combineStreamAndSubjectName(stream, subject)
resp, err := natsJS.PublishAsync(channel, payload)
if err != nil {
msg := fmt.Sprintf("publish message to subject %s error: %s", channel, err.Error())
return nil, errors.New(msg)
}
return resp.Msg(), nil
}
// Subscribe ... // Subscribe ...
func Subscribe(stream, subject string, cb nats.MsgHandler) (*nats.Subscription, error) { func Subscribe(stream, subject string, cb nats.MsgHandler) (*nats.Subscription, error) {
channel := combineStreamAndSubjectName(stream, subject) channel := combineStreamAndSubjectName(stream, subject)