Documentation ¶
Index ¶
- Variables
- func RegisterNatsServer(s *grpc.Server, srv NatsServer)
- type Message
- func (*Message) Descriptor() ([]byte, []int)deprecated
- func (x *Message) GetChannel() string
- func (x *Message) GetCreated() int64
- func (x *Message) GetPayload() []byte
- func (x *Message) GetProtocol() string
- func (x *Message) GetPublisher() string
- func (x *Message) GetSubtopic() string
- func (*Message) ProtoMessage()
- func (x *Message) ProtoReflect() protoreflect.Message
- func (x *Message) Reset()
- func (x *Message) String() string
- type NatsClient
- type NatsServer
- type UnimplementedNatsServer
Constants ¶
This section is empty.
Variables ¶
View Source
var File_nats_proto protoreflect.FileDescriptor
Functions ¶
func RegisterNatsServer ¶
func RegisterNatsServer(s *grpc.Server, srv NatsServer)
Types ¶
type Message ¶
type Message struct { Channel string `protobuf:"bytes,1,opt,name=channel,proto3" json:"channel,omitempty"` //channel id Subtopic string `protobuf:"bytes,2,opt,name=subtopic,proto3" json:"subtopic,omitempty"` Publisher string `protobuf:"bytes,3,opt,name=publisher,proto3" json:"publisher,omitempty"` //thing id Protocol string `protobuf:"bytes,4,opt,name=protocol,proto3" json:"protocol,omitempty"` Payload []byte `protobuf:"bytes,5,opt,name=payload,proto3" json:"payload,omitempty"` Created int64 `protobuf:"varint,6,opt,name=created,proto3" json:"created,omitempty"` //timestamp gtime.Now().Timestamp() // contains filtered or unexported fields }
Message corex适配器层发出的消息
func (*Message) Descriptor
deprecated
func (*Message) GetChannel ¶
func (*Message) GetCreated ¶
func (*Message) GetPayload ¶
func (*Message) GetProtocol ¶
func (*Message) GetPublisher ¶
func (*Message) GetSubtopic ¶
func (*Message) ProtoMessage ¶
func (*Message) ProtoMessage()
func (*Message) ProtoReflect ¶
func (x *Message) ProtoReflect() protoreflect.Message
type NatsClient ¶
type NatsClient interface {
AdapterMessages(ctx context.Context, in *Message, opts ...grpc.CallOption) (*emptypb.Empty, error)
}
NatsClient is the client API for Nats service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewNatsClient ¶
func NewNatsClient(cc grpc.ClientConnInterface) NatsClient
type NatsServer ¶
NatsServer is the server API for Nats service.
type UnimplementedNatsServer ¶
type UnimplementedNatsServer struct { }
UnimplementedNatsServer can be embedded to have forward compatible implementations.
func (*UnimplementedNatsServer) AdapterMessages ¶
Click to show internal directories.
Click to hide internal directories.