micro/registry/proto/registry.pb.go

790 lines
26 KiB
Go
Raw Normal View History

2019-09-09 18:57:57 +03:00
// Code generated by protoc-gen-go. DO NOT EDIT.
2019-09-23 19:25:15 +03:00
// source: registry.proto
2019-09-09 18:57:57 +03:00
package go_micro_registry
import (
fmt "fmt"
proto "github.com/golang/protobuf/proto"
math "math"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
2019-09-23 19:25:15 +03:00
// EventType defines the type of event
type EventType int32
const (
EventType_Create EventType = 0
EventType_Delete EventType = 1
EventType_Update EventType = 2
)
var EventType_name = map[int32]string{
0: "Create",
1: "Delete",
2: "Update",
}
var EventType_value = map[string]int32{
"Create": 0,
"Delete": 1,
"Update": 2,
}
func (x EventType) String() string {
return proto.EnumName(EventType_name, int32(x))
}
func (EventType) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_41af05d40a615591, []int{0}
}
2019-09-09 18:57:57 +03:00
// Service represents a go-micro service
type Service struct {
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
Metadata map[string]string `protobuf:"bytes,3,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
Endpoints []*Endpoint `protobuf:"bytes,4,rep,name=endpoints,proto3" json:"endpoints,omitempty"`
Nodes []*Node `protobuf:"bytes,5,rep,name=nodes,proto3" json:"nodes,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Service) Reset() { *m = Service{} }
func (m *Service) String() string { return proto.CompactTextString(m) }
func (*Service) ProtoMessage() {}
func (*Service) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{0}
2019-09-09 18:57:57 +03:00
}
func (m *Service) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Service.Unmarshal(m, b)
}
func (m *Service) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Service.Marshal(b, m, deterministic)
}
func (m *Service) XXX_Merge(src proto.Message) {
xxx_messageInfo_Service.Merge(m, src)
}
func (m *Service) XXX_Size() int {
return xxx_messageInfo_Service.Size(m)
}
func (m *Service) XXX_DiscardUnknown() {
xxx_messageInfo_Service.DiscardUnknown(m)
}
var xxx_messageInfo_Service proto.InternalMessageInfo
func (m *Service) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *Service) GetVersion() string {
if m != nil {
return m.Version
}
return ""
}
func (m *Service) GetMetadata() map[string]string {
if m != nil {
return m.Metadata
}
return nil
}
func (m *Service) GetEndpoints() []*Endpoint {
if m != nil {
return m.Endpoints
}
return nil
}
func (m *Service) GetNodes() []*Node {
if m != nil {
return m.Nodes
}
return nil
}
// Node represents the node the service is on
type Node struct {
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
Port int64 `protobuf:"varint,3,opt,name=port,proto3" json:"port,omitempty"`
Metadata map[string]string `protobuf:"bytes,4,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Node) Reset() { *m = Node{} }
func (m *Node) String() string { return proto.CompactTextString(m) }
func (*Node) ProtoMessage() {}
func (*Node) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{1}
2019-09-09 18:57:57 +03:00
}
func (m *Node) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Node.Unmarshal(m, b)
}
func (m *Node) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Node.Marshal(b, m, deterministic)
}
func (m *Node) XXX_Merge(src proto.Message) {
xxx_messageInfo_Node.Merge(m, src)
}
func (m *Node) XXX_Size() int {
return xxx_messageInfo_Node.Size(m)
}
func (m *Node) XXX_DiscardUnknown() {
xxx_messageInfo_Node.DiscardUnknown(m)
}
var xxx_messageInfo_Node proto.InternalMessageInfo
func (m *Node) GetId() string {
if m != nil {
return m.Id
}
return ""
}
func (m *Node) GetAddress() string {
if m != nil {
return m.Address
}
return ""
}
func (m *Node) GetPort() int64 {
if m != nil {
return m.Port
}
return 0
}
func (m *Node) GetMetadata() map[string]string {
if m != nil {
return m.Metadata
}
return nil
}
// Endpoint is a endpoint provided by a service
type Endpoint struct {
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Request *Value `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
Response *Value `protobuf:"bytes,3,opt,name=response,proto3" json:"response,omitempty"`
Metadata map[string]string `protobuf:"bytes,4,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Endpoint) Reset() { *m = Endpoint{} }
func (m *Endpoint) String() string { return proto.CompactTextString(m) }
func (*Endpoint) ProtoMessage() {}
func (*Endpoint) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{2}
2019-09-09 18:57:57 +03:00
}
func (m *Endpoint) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Endpoint.Unmarshal(m, b)
}
func (m *Endpoint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Endpoint.Marshal(b, m, deterministic)
}
func (m *Endpoint) XXX_Merge(src proto.Message) {
xxx_messageInfo_Endpoint.Merge(m, src)
}
func (m *Endpoint) XXX_Size() int {
return xxx_messageInfo_Endpoint.Size(m)
}
func (m *Endpoint) XXX_DiscardUnknown() {
xxx_messageInfo_Endpoint.DiscardUnknown(m)
}
var xxx_messageInfo_Endpoint proto.InternalMessageInfo
func (m *Endpoint) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *Endpoint) GetRequest() *Value {
if m != nil {
return m.Request
}
return nil
}
func (m *Endpoint) GetResponse() *Value {
if m != nil {
return m.Response
}
return nil
}
func (m *Endpoint) GetMetadata() map[string]string {
if m != nil {
return m.Metadata
}
return nil
}
// Value is an opaque value for a request or response
type Value struct {
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
Values []*Value `protobuf:"bytes,3,rep,name=values,proto3" json:"values,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Value) Reset() { *m = Value{} }
func (m *Value) String() string { return proto.CompactTextString(m) }
func (*Value) ProtoMessage() {}
func (*Value) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{3}
2019-09-09 18:57:57 +03:00
}
func (m *Value) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Value.Unmarshal(m, b)
}
func (m *Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Value.Marshal(b, m, deterministic)
}
func (m *Value) XXX_Merge(src proto.Message) {
xxx_messageInfo_Value.Merge(m, src)
}
func (m *Value) XXX_Size() int {
return xxx_messageInfo_Value.Size(m)
}
func (m *Value) XXX_DiscardUnknown() {
xxx_messageInfo_Value.DiscardUnknown(m)
}
var xxx_messageInfo_Value proto.InternalMessageInfo
func (m *Value) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *Value) GetType() string {
if m != nil {
return m.Type
}
return ""
}
func (m *Value) GetValues() []*Value {
if m != nil {
return m.Values
}
return nil
}
// Result is returns by the watcher
type Result struct {
Action string `protobuf:"bytes,1,opt,name=action,proto3" json:"action,omitempty"`
Service *Service `protobuf:"bytes,2,opt,name=service,proto3" json:"service,omitempty"`
Timestamp int64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Result) Reset() { *m = Result{} }
func (m *Result) String() string { return proto.CompactTextString(m) }
func (*Result) ProtoMessage() {}
func (*Result) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{4}
2019-09-09 18:57:57 +03:00
}
func (m *Result) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Result.Unmarshal(m, b)
}
func (m *Result) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Result.Marshal(b, m, deterministic)
}
func (m *Result) XXX_Merge(src proto.Message) {
xxx_messageInfo_Result.Merge(m, src)
}
func (m *Result) XXX_Size() int {
return xxx_messageInfo_Result.Size(m)
}
func (m *Result) XXX_DiscardUnknown() {
xxx_messageInfo_Result.DiscardUnknown(m)
}
var xxx_messageInfo_Result proto.InternalMessageInfo
func (m *Result) GetAction() string {
if m != nil {
return m.Action
}
return ""
}
func (m *Result) GetService() *Service {
if m != nil {
return m.Service
}
return nil
}
func (m *Result) GetTimestamp() int64 {
if m != nil {
return m.Timestamp
}
return 0
}
type EmptyResponse struct {
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *EmptyResponse) Reset() { *m = EmptyResponse{} }
func (m *EmptyResponse) String() string { return proto.CompactTextString(m) }
func (*EmptyResponse) ProtoMessage() {}
func (*EmptyResponse) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{5}
2019-09-09 18:57:57 +03:00
}
func (m *EmptyResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_EmptyResponse.Unmarshal(m, b)
}
func (m *EmptyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_EmptyResponse.Marshal(b, m, deterministic)
}
func (m *EmptyResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_EmptyResponse.Merge(m, src)
}
func (m *EmptyResponse) XXX_Size() int {
return xxx_messageInfo_EmptyResponse.Size(m)
}
func (m *EmptyResponse) XXX_DiscardUnknown() {
xxx_messageInfo_EmptyResponse.DiscardUnknown(m)
}
var xxx_messageInfo_EmptyResponse proto.InternalMessageInfo
type GetRequest struct {
Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetRequest) Reset() { *m = GetRequest{} }
func (m *GetRequest) String() string { return proto.CompactTextString(m) }
func (*GetRequest) ProtoMessage() {}
func (*GetRequest) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{6}
2019-09-09 18:57:57 +03:00
}
func (m *GetRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetRequest.Unmarshal(m, b)
}
func (m *GetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetRequest.Marshal(b, m, deterministic)
}
func (m *GetRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetRequest.Merge(m, src)
}
func (m *GetRequest) XXX_Size() int {
return xxx_messageInfo_GetRequest.Size(m)
}
func (m *GetRequest) XXX_DiscardUnknown() {
xxx_messageInfo_GetRequest.DiscardUnknown(m)
}
var xxx_messageInfo_GetRequest proto.InternalMessageInfo
func (m *GetRequest) GetService() string {
if m != nil {
return m.Service
}
return ""
}
type GetResponse struct {
Services []*Service `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetResponse) Reset() { *m = GetResponse{} }
func (m *GetResponse) String() string { return proto.CompactTextString(m) }
func (*GetResponse) ProtoMessage() {}
func (*GetResponse) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{7}
2019-09-09 18:57:57 +03:00
}
func (m *GetResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetResponse.Unmarshal(m, b)
}
func (m *GetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetResponse.Marshal(b, m, deterministic)
}
func (m *GetResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetResponse.Merge(m, src)
}
func (m *GetResponse) XXX_Size() int {
return xxx_messageInfo_GetResponse.Size(m)
}
func (m *GetResponse) XXX_DiscardUnknown() {
xxx_messageInfo_GetResponse.DiscardUnknown(m)
}
var xxx_messageInfo_GetResponse proto.InternalMessageInfo
func (m *GetResponse) GetServices() []*Service {
if m != nil {
return m.Services
}
return nil
}
type ListRequest struct {
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ListRequest) Reset() { *m = ListRequest{} }
func (m *ListRequest) String() string { return proto.CompactTextString(m) }
func (*ListRequest) ProtoMessage() {}
func (*ListRequest) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{8}
2019-09-09 18:57:57 +03:00
}
func (m *ListRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListRequest.Unmarshal(m, b)
}
func (m *ListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ListRequest.Marshal(b, m, deterministic)
}
func (m *ListRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListRequest.Merge(m, src)
}
func (m *ListRequest) XXX_Size() int {
return xxx_messageInfo_ListRequest.Size(m)
}
func (m *ListRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ListRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ListRequest proto.InternalMessageInfo
type ListResponse struct {
Services []*Service `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ListResponse) Reset() { *m = ListResponse{} }
func (m *ListResponse) String() string { return proto.CompactTextString(m) }
func (*ListResponse) ProtoMessage() {}
func (*ListResponse) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{9}
2019-09-09 18:57:57 +03:00
}
func (m *ListResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListResponse.Unmarshal(m, b)
}
func (m *ListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ListResponse.Marshal(b, m, deterministic)
}
func (m *ListResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListResponse.Merge(m, src)
}
func (m *ListResponse) XXX_Size() int {
return xxx_messageInfo_ListResponse.Size(m)
}
func (m *ListResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ListResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ListResponse proto.InternalMessageInfo
func (m *ListResponse) GetServices() []*Service {
if m != nil {
return m.Services
}
return nil
}
type WatchRequest struct {
// service is optional
Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *WatchRequest) Reset() { *m = WatchRequest{} }
func (m *WatchRequest) String() string { return proto.CompactTextString(m) }
func (*WatchRequest) ProtoMessage() {}
func (*WatchRequest) Descriptor() ([]byte, []int) {
2019-09-23 19:25:15 +03:00
return fileDescriptor_41af05d40a615591, []int{10}
2019-09-09 18:57:57 +03:00
}
func (m *WatchRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WatchRequest.Unmarshal(m, b)
}
func (m *WatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_WatchRequest.Marshal(b, m, deterministic)
}
func (m *WatchRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_WatchRequest.Merge(m, src)
}
func (m *WatchRequest) XXX_Size() int {
return xxx_messageInfo_WatchRequest.Size(m)
}
func (m *WatchRequest) XXX_DiscardUnknown() {
xxx_messageInfo_WatchRequest.DiscardUnknown(m)
}
var xxx_messageInfo_WatchRequest proto.InternalMessageInfo
func (m *WatchRequest) GetService() string {
if m != nil {
return m.Service
}
return ""
}
// SyncRequest to request registry sync
type SyncRequest struct {
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SyncRequest) Reset() { *m = SyncRequest{} }
func (m *SyncRequest) String() string { return proto.CompactTextString(m) }
func (*SyncRequest) ProtoMessage() {}
func (*SyncRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_41af05d40a615591, []int{11}
}
func (m *SyncRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SyncRequest.Unmarshal(m, b)
}
func (m *SyncRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SyncRequest.Marshal(b, m, deterministic)
}
func (m *SyncRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_SyncRequest.Merge(m, src)
}
func (m *SyncRequest) XXX_Size() int {
return xxx_messageInfo_SyncRequest.Size(m)
}
func (m *SyncRequest) XXX_DiscardUnknown() {
xxx_messageInfo_SyncRequest.DiscardUnknown(m)
}
var xxx_messageInfo_SyncRequest proto.InternalMessageInfo
type SyncResponse struct {
Services []*Service `protobuf:"bytes,1,rep,name=services,proto3" json:"services,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SyncResponse) Reset() { *m = SyncResponse{} }
func (m *SyncResponse) String() string { return proto.CompactTextString(m) }
func (*SyncResponse) ProtoMessage() {}
func (*SyncResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_41af05d40a615591, []int{12}
}
func (m *SyncResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SyncResponse.Unmarshal(m, b)
}
func (m *SyncResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SyncResponse.Marshal(b, m, deterministic)
}
func (m *SyncResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_SyncResponse.Merge(m, src)
}
func (m *SyncResponse) XXX_Size() int {
return xxx_messageInfo_SyncResponse.Size(m)
}
func (m *SyncResponse) XXX_DiscardUnknown() {
xxx_messageInfo_SyncResponse.DiscardUnknown(m)
}
var xxx_messageInfo_SyncResponse proto.InternalMessageInfo
func (m *SyncResponse) GetServices() []*Service {
if m != nil {
return m.Services
}
return nil
}
2019-09-23 19:25:15 +03:00
// Event is registry event
type Event struct {
// Event Id
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
// type of event
Type EventType `protobuf:"varint,2,opt,name=type,proto3,enum=go.micro.registry.EventType" json:"type,omitempty"`
// unix timestamp of event
Timestamp int64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
// service entry
Service *Service `protobuf:"bytes,4,opt,name=service,proto3" json:"service,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
func (m *Event) Reset() { *m = Event{} }
func (m *Event) String() string { return proto.CompactTextString(m) }
func (*Event) ProtoMessage() {}
func (*Event) Descriptor() ([]byte, []int) {
return fileDescriptor_41af05d40a615591, []int{13}
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
func (m *Event) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Event.Unmarshal(m, b)
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
func (m *Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Event.Marshal(b, m, deterministic)
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
func (m *Event) XXX_Merge(src proto.Message) {
xxx_messageInfo_Event.Merge(m, src)
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
func (m *Event) XXX_Size() int {
return xxx_messageInfo_Event.Size(m)
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
func (m *Event) XXX_DiscardUnknown() {
xxx_messageInfo_Event.DiscardUnknown(m)
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
var xxx_messageInfo_Event proto.InternalMessageInfo
2019-09-09 18:57:57 +03:00
2019-09-23 19:25:15 +03:00
func (m *Event) GetId() string {
if m != nil {
return m.Id
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
return ""
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
func (m *Event) GetType() EventType {
if m != nil {
return m.Type
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
return EventType_Create
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
func (m *Event) GetTimestamp() int64 {
if m != nil {
return m.Timestamp
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
return 0
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
func (m *Event) GetService() *Service {
if m != nil {
return m.Service
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
return nil
2019-09-09 18:57:57 +03:00
}
2019-09-23 19:25:15 +03:00
func init() {
proto.RegisterEnum("go.micro.registry.EventType", EventType_name, EventType_value)
proto.RegisterType((*Service)(nil), "go.micro.registry.Service")
proto.RegisterMapType((map[string]string)(nil), "go.micro.registry.Service.MetadataEntry")
proto.RegisterType((*Node)(nil), "go.micro.registry.Node")
proto.RegisterMapType((map[string]string)(nil), "go.micro.registry.Node.MetadataEntry")
proto.RegisterType((*Endpoint)(nil), "go.micro.registry.Endpoint")
proto.RegisterMapType((map[string]string)(nil), "go.micro.registry.Endpoint.MetadataEntry")
proto.RegisterType((*Value)(nil), "go.micro.registry.Value")
proto.RegisterType((*Result)(nil), "go.micro.registry.Result")
proto.RegisterType((*EmptyResponse)(nil), "go.micro.registry.EmptyResponse")
proto.RegisterType((*GetRequest)(nil), "go.micro.registry.GetRequest")
proto.RegisterType((*GetResponse)(nil), "go.micro.registry.GetResponse")
proto.RegisterType((*ListRequest)(nil), "go.micro.registry.ListRequest")
proto.RegisterType((*ListResponse)(nil), "go.micro.registry.ListResponse")
proto.RegisterType((*WatchRequest)(nil), "go.micro.registry.WatchRequest")
proto.RegisterType((*SyncRequest)(nil), "go.micro.registry.SyncRequest")
proto.RegisterType((*SyncResponse)(nil), "go.micro.registry.SyncResponse")
2019-09-23 19:25:15 +03:00
proto.RegisterType((*Event)(nil), "go.micro.registry.Event")
}
func init() { proto.RegisterFile("registry.proto", fileDescriptor_41af05d40a615591) }
var fileDescriptor_41af05d40a615591 = []byte{
// 661 bytes of a gzipped FileDescriptorProto
2019-09-23 19:25:15 +03:00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xdb, 0x6e, 0xd3, 0x4c,
0x10, 0x8e, 0x9d, 0xf3, 0xa4, 0xe9, 0xdf, 0x7f, 0x84, 0xc0, 0x98, 0x02, 0x91, 0x25, 0x50, 0x40,
0xc2, 0x54, 0xa1, 0x42, 0x1c, 0xae, 0x10, 0x35, 0x15, 0xa8, 0x45, 0xc2, 0xe5, 0x70, 0x6d, 0xe2,
0x51, 0xb1, 0xa8, 0x0f, 0xec, 0x6e, 0x23, 0xf9, 0x1d, 0x78, 0x05, 0xee, 0x78, 0x14, 0x9e, 0x82,
0xa7, 0x41, 0x5e, 0xaf, 0x13, 0x57, 0x5d, 0x07, 0xa4, 0xc2, 0xdd, 0xcc, 0xee, 0x37, 0xb3, 0xdf,
0x7c, 0xfb, 0xad, 0x0d, 0x9b, 0x8c, 0x8e, 0x23, 0x2e, 0x58, 0xee, 0x66, 0x2c, 0x15, 0x29, 0xfe,
0x7f, 0x9c, 0xba, 0x71, 0x34, 0x67, 0xa9, 0x5b, 0x6d, 0x38, 0xdf, 0x4d, 0xe8, 0x1f, 0x11, 0x5b,
0x44, 0x73, 0x42, 0x84, 0x4e, 0x12, 0xc4, 0x64, 0x19, 0x13, 0x63, 0x3a, 0xf4, 0x65, 0x8c, 0x16,
0xf4, 0x17, 0xc4, 0x78, 0x94, 0x26, 0x96, 0x29, 0x97, 0xab, 0x14, 0xf7, 0x60, 0x10, 0x93, 0x08,
0xc2, 0x40, 0x04, 0x56, 0x7b, 0xd2, 0x9e, 0x8e, 0x66, 0x53, 0xf7, 0x5c, 0x7f, 0x57, 0xf5, 0x76,
0x0f, 0x15, 0xd4, 0x4b, 0x04, 0xcb, 0xfd, 0x65, 0x25, 0x3e, 0x86, 0x21, 0x25, 0x61, 0x96, 0x46,
0x89, 0xe0, 0x56, 0x47, 0xb6, 0xb9, 0xa6, 0x69, 0xe3, 0x29, 0x8c, 0xbf, 0x42, 0xe3, 0x3d, 0xe8,
0x26, 0x69, 0x48, 0xdc, 0xea, 0xca, 0xb2, 0x2b, 0x9a, 0xb2, 0xd7, 0x69, 0x48, 0x7e, 0x89, 0xb2,
0x9f, 0xc2, 0xf8, 0x0c, 0x09, 0xdc, 0x82, 0xf6, 0x67, 0xca, 0xd5, 0xb4, 0x45, 0x88, 0x97, 0xa0,
0xbb, 0x08, 0x4e, 0x4e, 0x49, 0x8d, 0x5a, 0x26, 0x4f, 0xcc, 0x47, 0x86, 0xf3, 0xc3, 0x80, 0x4e,
0xd1, 0x0c, 0x37, 0xc1, 0x8c, 0x42, 0x55, 0x63, 0x46, 0x61, 0xa1, 0x4f, 0x10, 0x86, 0x8c, 0x38,
0xaf, 0xf4, 0x51, 0x69, 0xa1, 0x66, 0x96, 0x32, 0x61, 0xb5, 0x27, 0xc6, 0xb4, 0xed, 0xcb, 0x18,
0x9f, 0xd5, 0x34, 0x2b, 0x87, 0xbd, 0xd5, 0xc0, 0xba, 0x49, 0xb0, 0x8b, 0x8d, 0xf1, 0xd5, 0x84,
0x41, 0x25, 0xa5, 0xf6, 0xba, 0x67, 0xd0, 0x67, 0xf4, 0xe5, 0x94, 0xb8, 0x90, 0xc5, 0xa3, 0x99,
0xa5, 0xe1, 0xf7, 0xbe, 0xe8, 0xe7, 0x57, 0x40, 0xdc, 0x85, 0x01, 0x23, 0x9e, 0xa5, 0x09, 0x27,
0x39, 0xec, 0xba, 0xa2, 0x25, 0x12, 0xbd, 0x73, 0x52, 0xdc, 0x59, 0x73, 0xef, 0xff, 0x46, 0x8e,
0x00, 0xba, 0x92, 0x96, 0x56, 0x0a, 0x84, 0x8e, 0xc8, 0xb3, 0xaa, 0x4a, 0xc6, 0xb8, 0x03, 0x3d,
0x59, 0xcd, 0x95, 0xe3, 0x9b, 0x07, 0x55, 0x38, 0x47, 0x40, 0xcf, 0x27, 0x7e, 0x7a, 0x22, 0xf0,
0x32, 0xf4, 0x82, 0xb9, 0x28, 0x1e, 0x52, 0x79, 0x8a, 0xca, 0x70, 0x17, 0xfa, 0xbc, 0x7c, 0x24,
0x4a, 0x72, 0xbb, 0xf9, 0x19, 0xf9, 0x15, 0x14, 0xb7, 0x61, 0x28, 0xa2, 0x98, 0xb8, 0x08, 0xe2,
0x4c, 0x59, 0x6c, 0xb5, 0xe0, 0xfc, 0x07, 0x63, 0x2f, 0xce, 0x44, 0xee, 0x2b, 0xb5, 0x9d, 0xdb,
0x00, 0xfb, 0x24, 0x7c, 0x75, 0x63, 0xd6, 0xea, 0xc8, 0x92, 0x4b, 0x95, 0x3a, 0x1e, 0x8c, 0x24,
0x4e, 0x5d, 0xd2, 0x43, 0x18, 0xa8, 0x1d, 0x6e, 0x19, 0x72, 0xe2, 0x75, 0xe4, 0x96, 0x58, 0x67,
0x0c, 0xa3, 0x83, 0x88, 0x57, 0xe7, 0x39, 0x2f, 0x60, 0xa3, 0x4c, 0x2f, 0xd8, 0x76, 0x0a, 0x1b,
0x1f, 0x02, 0x31, 0xff, 0xf4, 0xfb, 0x39, 0xc6, 0x30, 0x3a, 0xca, 0x93, 0x79, 0x8d, 0x40, 0x99,
0x5e, 0x90, 0xc0, 0x37, 0x03, 0xba, 0xde, 0x82, 0x12, 0x71, 0xee, 0x3b, 0xb0, 0x53, 0x73, 0xcb,
0xe6, 0x6c, 0x5b, 0x67, 0xe5, 0xa2, 0xee, 0x6d, 0x9e, 0x91, 0xf2, 0xd2, 0xda, 0x1b, 0xac, 0xbb,
0xa2, 0xf3, 0xc7, 0xae, 0xb8, 0x7b, 0x1f, 0x86, 0xcb, 0x63, 0x10, 0xa0, 0xf7, 0x9c, 0x51, 0x20,
0x68, 0xab, 0x55, 0xc4, 0x7b, 0x74, 0x42, 0x82, 0xb6, 0x8c, 0x22, 0x7e, 0x97, 0x85, 0xc5, 0xba,
0x39, 0xfb, 0xd9, 0x86, 0x81, 0xaf, 0xda, 0xe1, 0xa1, 0x34, 0x49, 0xf5, 0x37, 0xb8, 0xae, 0x39,
0x70, 0xe5, 0x21, 0xfb, 0x46, 0xd3, 0xb6, 0x72, 0x5c, 0x0b, 0x5f, 0x55, 0xad, 0x89, 0xe1, 0x1a,
0xf6, 0xf6, 0x44, 0x27, 0xd6, 0x19, 0xf7, 0xb6, 0xf0, 0x00, 0x60, 0x8f, 0xd8, 0xdf, 0xea, 0xf6,
0xa6, 0xf4, 0xa3, 0x2a, 0xe1, 0xa8, 0x9b, 0xa5, 0xe6, 0x5f, 0xfb, 0x66, 0xe3, 0xfe, 0xb2, 0xe5,
0x3e, 0x74, 0xa5, 0x35, 0x51, 0x87, 0xad, 0x9b, 0xd6, 0xbe, 0xaa, 0x01, 0x94, 0x9f, 0x08, 0xa7,
0xb5, 0x63, 0xe0, 0x4b, 0xe8, 0x14, 0x56, 0xd5, 0x72, 0xaa, 0x59, 0x5a, 0xcb, 0xa9, 0xee, 0x71,
0xa7, 0xf5, 0xb1, 0x27, 0xff, 0xfa, 0x0f, 0x7e, 0x05, 0x00, 0x00, 0xff, 0xff, 0xcf, 0xf0, 0x2a,
0x05, 0x07, 0x08, 0x00, 0x00,
2019-09-09 18:57:57 +03:00
}