2019-12-18 02:05:46 +03:00
|
|
|
package micro
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/client"
|
2019-12-18 02:05:46 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
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...)
|
|
|
|
}
|