micro/client/grpc/message.go

41 lines
719 B
Go
Raw Normal View History

2019-06-03 20:44:43 +03:00
package grpc
import (
"github.com/micro/go-micro/v3/client"
2019-06-03 20:44:43 +03:00
)
2019-07-07 14:44:09 +03:00
type grpcEvent struct {
2019-06-03 20:44:43 +03:00
topic string
contentType string
payload interface{}
}
2019-07-07 14:44:09 +03:00
func newGRPCEvent(topic string, payload interface{}, contentType string, opts ...client.MessageOption) client.Message {
2019-06-03 20:44:43 +03:00
var options client.MessageOptions
for _, o := range opts {
o(&options)
}
if len(options.ContentType) > 0 {
contentType = options.ContentType
}
2019-07-07 14:44:09 +03:00
return &grpcEvent{
2019-06-03 20:44:43 +03:00
payload: payload,
topic: topic,
contentType: contentType,
}
}
2019-07-07 14:44:09 +03:00
func (g *grpcEvent) ContentType() string {
2019-06-03 20:44:43 +03:00
return g.contentType
}
2019-07-07 14:44:09 +03:00
func (g *grpcEvent) Topic() string {
2019-06-03 20:44:43 +03:00
return g.topic
}
2019-07-07 14:44:09 +03:00
func (g *grpcEvent) Payload() interface{} {
2019-06-03 20:44:43 +03:00
return g.payload
}