1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-06-18 22:17:44 +02:00

publisher => event

This commit is contained in:
Asim Aslam
2019-12-17 23:05:46 +00:00
parent dda96cb87e
commit cb9c4c3aef
3 changed files with 29 additions and 21 deletions

16
event.go Normal file
View File

@ -0,0 +1,16 @@
package micro
import (
"context"
"github.com/micro/go-micro/client"
)
type event struct {
c client.Client
topic string
}
func (e *event) Publish(ctx context.Context, msg interface{}, opts ...client.PublishOption) error {
return e.c.Publish(ctx, e.c.NewMessage(e.topic, msg), opts...)
}