1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/publisher.go

17 lines
298 B
Go
Raw Normal View History

2017-03-18 21:00:11 +02:00
package micro
import (
2018-03-03 13:53:52 +02:00
"context"
2017-03-18 21:00:11 +02: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 {
2018-04-14 19:15:09 +02:00
return p.c.Publish(ctx, p.c.NewMessage(p.topic, msg))
2017-03-18 21:00:11 +02:00
}