micro/publisher.go

17 lines
307 B
Go
Raw Normal View History

2017-03-18 22:00:11 +03:00
package micro
import (
2018-03-03 14:53:52 +03:00
"context"
2017-03-18 22:00:11 +03:00
"github.com/micro/go-micro/client"
)
type publisher struct {
c client.Client
topic string
}
func (p *publisher) Publish(ctx context.Context, msg interface{}, opts ...client.PublishOption) error {
2019-05-21 10:49:30 +03:00
return p.c.Publish(ctx, p.c.NewMessage(p.topic, msg), opts...)
2017-03-18 22:00:11 +03:00
}