619 lines
		
	
	
		
			20 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			619 lines
		
	
	
		
			20 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by protoc-gen-go. DO NOT EDIT.
 | |
| // source: micro/go-micro/store/service/proto/store.proto
 | |
| 
 | |
| package go_micro_store
 | |
| 
 | |
| import (
 | |
| 	context "context"
 | |
| 	fmt "fmt"
 | |
| 	proto "github.com/golang/protobuf/proto"
 | |
| 	grpc "google.golang.org/grpc"
 | |
| 	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
 | |
| 
 | |
| type Record struct {
 | |
| 	// key of the record
 | |
| 	Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
 | |
| 	// value in the record
 | |
| 	Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
 | |
| 	// timestamp in unix seconds
 | |
| 	Expiry               int64    `protobuf:"varint,3,opt,name=expiry,proto3" json:"expiry,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *Record) Reset()         { *m = Record{} }
 | |
| func (m *Record) String() string { return proto.CompactTextString(m) }
 | |
| func (*Record) ProtoMessage()    {}
 | |
| func (*Record) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_f84ccc98e143ed3e, []int{0}
 | |
| }
 | |
| 
 | |
| func (m *Record) XXX_Unmarshal(b []byte) error {
 | |
| 	return xxx_messageInfo_Record.Unmarshal(m, b)
 | |
| }
 | |
| func (m *Record) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	return xxx_messageInfo_Record.Marshal(b, m, deterministic)
 | |
| }
 | |
| func (m *Record) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_Record.Merge(m, src)
 | |
| }
 | |
| func (m *Record) XXX_Size() int {
 | |
| 	return xxx_messageInfo_Record.Size(m)
 | |
| }
 | |
| func (m *Record) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_Record.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_Record proto.InternalMessageInfo
 | |
| 
 | |
| func (m *Record) GetKey() string {
 | |
| 	if m != nil {
 | |
| 		return m.Key
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (m *Record) GetValue() []byte {
 | |
| 	if m != nil {
 | |
| 		return m.Value
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (m *Record) GetExpiry() int64 {
 | |
| 	if m != nil {
 | |
| 		return m.Expiry
 | |
| 	}
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| type ReadRequest struct {
 | |
| 	Keys                 []string `protobuf:"bytes,1,rep,name=keys,proto3" json:"keys,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *ReadRequest) Reset()         { *m = ReadRequest{} }
 | |
| func (m *ReadRequest) String() string { return proto.CompactTextString(m) }
 | |
| func (*ReadRequest) ProtoMessage()    {}
 | |
| func (*ReadRequest) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_f84ccc98e143ed3e, []int{1}
 | |
| }
 | |
| 
 | |
| func (m *ReadRequest) XXX_Unmarshal(b []byte) error {
 | |
| 	return xxx_messageInfo_ReadRequest.Unmarshal(m, b)
 | |
| }
 | |
| func (m *ReadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	return xxx_messageInfo_ReadRequest.Marshal(b, m, deterministic)
 | |
| }
 | |
| func (m *ReadRequest) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_ReadRequest.Merge(m, src)
 | |
| }
 | |
| func (m *ReadRequest) XXX_Size() int {
 | |
| 	return xxx_messageInfo_ReadRequest.Size(m)
 | |
| }
 | |
| func (m *ReadRequest) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_ReadRequest.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_ReadRequest proto.InternalMessageInfo
 | |
| 
 | |
| func (m *ReadRequest) GetKeys() []string {
 | |
| 	if m != nil {
 | |
| 		return m.Keys
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type ReadResponse struct {
 | |
| 	Records              []*Record `protobuf:"bytes,1,rep,name=records,proto3" json:"records,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
 | |
| 	XXX_unrecognized     []byte    `json:"-"`
 | |
| 	XXX_sizecache        int32     `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *ReadResponse) Reset()         { *m = ReadResponse{} }
 | |
| func (m *ReadResponse) String() string { return proto.CompactTextString(m) }
 | |
| func (*ReadResponse) ProtoMessage()    {}
 | |
| func (*ReadResponse) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_f84ccc98e143ed3e, []int{2}
 | |
| }
 | |
| 
 | |
| func (m *ReadResponse) XXX_Unmarshal(b []byte) error {
 | |
| 	return xxx_messageInfo_ReadResponse.Unmarshal(m, b)
 | |
| }
 | |
| func (m *ReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	return xxx_messageInfo_ReadResponse.Marshal(b, m, deterministic)
 | |
| }
 | |
| func (m *ReadResponse) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_ReadResponse.Merge(m, src)
 | |
| }
 | |
| func (m *ReadResponse) XXX_Size() int {
 | |
| 	return xxx_messageInfo_ReadResponse.Size(m)
 | |
| }
 | |
| func (m *ReadResponse) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_ReadResponse.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_ReadResponse proto.InternalMessageInfo
 | |
| 
 | |
| func (m *ReadResponse) GetRecords() []*Record {
 | |
| 	if m != nil {
 | |
| 		return m.Records
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type WriteRequest struct {
 | |
| 	Records              []*Record `protobuf:"bytes,2,rep,name=records,proto3" json:"records,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
 | |
| 	XXX_unrecognized     []byte    `json:"-"`
 | |
| 	XXX_sizecache        int32     `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *WriteRequest) Reset()         { *m = WriteRequest{} }
 | |
| func (m *WriteRequest) String() string { return proto.CompactTextString(m) }
 | |
| func (*WriteRequest) ProtoMessage()    {}
 | |
| func (*WriteRequest) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_f84ccc98e143ed3e, []int{3}
 | |
| }
 | |
| 
 | |
| func (m *WriteRequest) XXX_Unmarshal(b []byte) error {
 | |
| 	return xxx_messageInfo_WriteRequest.Unmarshal(m, b)
 | |
| }
 | |
| func (m *WriteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	return xxx_messageInfo_WriteRequest.Marshal(b, m, deterministic)
 | |
| }
 | |
| func (m *WriteRequest) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_WriteRequest.Merge(m, src)
 | |
| }
 | |
| func (m *WriteRequest) XXX_Size() int {
 | |
| 	return xxx_messageInfo_WriteRequest.Size(m)
 | |
| }
 | |
| func (m *WriteRequest) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_WriteRequest.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_WriteRequest proto.InternalMessageInfo
 | |
| 
 | |
| func (m *WriteRequest) GetRecords() []*Record {
 | |
| 	if m != nil {
 | |
| 		return m.Records
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type WriteResponse struct {
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *WriteResponse) Reset()         { *m = WriteResponse{} }
 | |
| func (m *WriteResponse) String() string { return proto.CompactTextString(m) }
 | |
| func (*WriteResponse) ProtoMessage()    {}
 | |
| func (*WriteResponse) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_f84ccc98e143ed3e, []int{4}
 | |
| }
 | |
| 
 | |
| func (m *WriteResponse) XXX_Unmarshal(b []byte) error {
 | |
| 	return xxx_messageInfo_WriteResponse.Unmarshal(m, b)
 | |
| }
 | |
| func (m *WriteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	return xxx_messageInfo_WriteResponse.Marshal(b, m, deterministic)
 | |
| }
 | |
| func (m *WriteResponse) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_WriteResponse.Merge(m, src)
 | |
| }
 | |
| func (m *WriteResponse) XXX_Size() int {
 | |
| 	return xxx_messageInfo_WriteResponse.Size(m)
 | |
| }
 | |
| func (m *WriteResponse) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_WriteResponse.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_WriteResponse proto.InternalMessageInfo
 | |
| 
 | |
| type DeleteRequest struct {
 | |
| 	Keys                 []string `protobuf:"bytes,1,rep,name=keys,proto3" json:"keys,omitempty"`
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *DeleteRequest) Reset()         { *m = DeleteRequest{} }
 | |
| func (m *DeleteRequest) String() string { return proto.CompactTextString(m) }
 | |
| func (*DeleteRequest) ProtoMessage()    {}
 | |
| func (*DeleteRequest) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_f84ccc98e143ed3e, []int{5}
 | |
| }
 | |
| 
 | |
| func (m *DeleteRequest) XXX_Unmarshal(b []byte) error {
 | |
| 	return xxx_messageInfo_DeleteRequest.Unmarshal(m, b)
 | |
| }
 | |
| func (m *DeleteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	return xxx_messageInfo_DeleteRequest.Marshal(b, m, deterministic)
 | |
| }
 | |
| func (m *DeleteRequest) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_DeleteRequest.Merge(m, src)
 | |
| }
 | |
| func (m *DeleteRequest) XXX_Size() int {
 | |
| 	return xxx_messageInfo_DeleteRequest.Size(m)
 | |
| }
 | |
| func (m *DeleteRequest) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_DeleteRequest.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_DeleteRequest proto.InternalMessageInfo
 | |
| 
 | |
| func (m *DeleteRequest) GetKeys() []string {
 | |
| 	if m != nil {
 | |
| 		return m.Keys
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| type DeleteResponse struct {
 | |
| 	XXX_NoUnkeyedLiteral struct{} `json:"-"`
 | |
| 	XXX_unrecognized     []byte   `json:"-"`
 | |
| 	XXX_sizecache        int32    `json:"-"`
 | |
| }
 | |
| 
 | |
| func (m *DeleteResponse) Reset()         { *m = DeleteResponse{} }
 | |
| func (m *DeleteResponse) String() string { return proto.CompactTextString(m) }
 | |
| func (*DeleteResponse) ProtoMessage()    {}
 | |
| func (*DeleteResponse) Descriptor() ([]byte, []int) {
 | |
| 	return fileDescriptor_f84ccc98e143ed3e, []int{6}
 | |
| }
 | |
| 
 | |
| func (m *DeleteResponse) XXX_Unmarshal(b []byte) error {
 | |
| 	return xxx_messageInfo_DeleteResponse.Unmarshal(m, b)
 | |
| }
 | |
| func (m *DeleteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
 | |
| 	return xxx_messageInfo_DeleteResponse.Marshal(b, m, deterministic)
 | |
| }
 | |
| func (m *DeleteResponse) XXX_Merge(src proto.Message) {
 | |
| 	xxx_messageInfo_DeleteResponse.Merge(m, src)
 | |
| }
 | |
| func (m *DeleteResponse) XXX_Size() int {
 | |
| 	return xxx_messageInfo_DeleteResponse.Size(m)
 | |
| }
 | |
| func (m *DeleteResponse) XXX_DiscardUnknown() {
 | |
| 	xxx_messageInfo_DeleteResponse.DiscardUnknown(m)
 | |
| }
 | |
| 
 | |
| var xxx_messageInfo_DeleteResponse proto.InternalMessageInfo
 | |
| 
 | |
| type ListRequest struct {
 | |
| 	// optional key
 | |
| 	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
 | |
| 	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) {
 | |
| 	return fileDescriptor_f84ccc98e143ed3e, []int{7}
 | |
| }
 | |
| 
 | |
| 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
 | |
| 
 | |
| func (m *ListRequest) GetKey() string {
 | |
| 	if m != nil {
 | |
| 		return m.Key
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type ListResponse struct {
 | |
| 	Records              []*Record `protobuf:"bytes,1,rep,name=records,proto3" json:"records,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) {
 | |
| 	return fileDescriptor_f84ccc98e143ed3e, []int{8}
 | |
| }
 | |
| 
 | |
| 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) GetRecords() []*Record {
 | |
| 	if m != nil {
 | |
| 		return m.Records
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	proto.RegisterType((*Record)(nil), "go.micro.store.Record")
 | |
| 	proto.RegisterType((*ReadRequest)(nil), "go.micro.store.ReadRequest")
 | |
| 	proto.RegisterType((*ReadResponse)(nil), "go.micro.store.ReadResponse")
 | |
| 	proto.RegisterType((*WriteRequest)(nil), "go.micro.store.WriteRequest")
 | |
| 	proto.RegisterType((*WriteResponse)(nil), "go.micro.store.WriteResponse")
 | |
| 	proto.RegisterType((*DeleteRequest)(nil), "go.micro.store.DeleteRequest")
 | |
| 	proto.RegisterType((*DeleteResponse)(nil), "go.micro.store.DeleteResponse")
 | |
| 	proto.RegisterType((*ListRequest)(nil), "go.micro.store.ListRequest")
 | |
| 	proto.RegisterType((*ListResponse)(nil), "go.micro.store.ListResponse")
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	proto.RegisterFile("micro/go-micro/store/service/proto/store.proto", fileDescriptor_f84ccc98e143ed3e)
 | |
| }
 | |
| 
 | |
| var fileDescriptor_f84ccc98e143ed3e = []byte{
 | |
| 	// 333 bytes of a gzipped FileDescriptorProto
 | |
| 	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x92, 0x4d, 0x4f, 0xc2, 0x40,
 | |
| 	0x10, 0x86, 0x59, 0x0a, 0x35, 0x0c, 0x1f, 0x92, 0x89, 0x21, 0x0d, 0x7e, 0xd5, 0x7a, 0xe9, 0xc5,
 | |
| 	0x42, 0xf0, 0x0f, 0x98, 0xf8, 0x11, 0x4d, 0x3c, 0xad, 0x07, 0xcf, 0x08, 0x13, 0xd2, 0x80, 0x2e,
 | |
| 	0xee, 0x16, 0x62, 0xff, 0x90, 0xbf, 0xd3, 0xec, 0x6e, 0xab, 0xc5, 0x42, 0x62, 0xbc, 0xcd, 0xee,
 | |
| 	0xbc, 0xf3, 0xec, 0xdb, 0x79, 0x0b, 0xd1, 0x6b, 0x3c, 0x91, 0x62, 0x30, 0x13, 0x17, 0xb6, 0x50,
 | |
| 	0x89, 0x90, 0x34, 0x50, 0x24, 0xd7, 0xf1, 0x84, 0x06, 0x4b, 0x29, 0x92, 0xec, 0x2e, 0x32, 0x35,
 | |
| 	0x76, 0x66, 0xc2, 0x8e, 0x44, 0xe6, 0x36, 0xb8, 0x07, 0x97, 0xd3, 0x44, 0xc8, 0x29, 0x76, 0xc1,
 | |
| 	0x99, 0x53, 0xea, 0x31, 0x9f, 0x85, 0x0d, 0xae, 0x4b, 0x3c, 0x80, 0xfa, 0x7a, 0xbc, 0x58, 0x91,
 | |
| 	0x57, 0xf5, 0x59, 0xd8, 0xe2, 0xf6, 0x80, 0x3d, 0x70, 0xe9, 0x63, 0x19, 0xcb, 0xd4, 0x73, 0x7c,
 | |
| 	0x16, 0x3a, 0x3c, 0x3b, 0x05, 0x67, 0xd0, 0xe4, 0x34, 0x9e, 0x72, 0x7a, 0x5f, 0x91, 0x4a, 0x10,
 | |
| 	0xa1, 0x36, 0xa7, 0x54, 0x79, 0xcc, 0x77, 0xc2, 0x06, 0x37, 0x75, 0x70, 0x05, 0x2d, 0x2b, 0x51,
 | |
| 	0x4b, 0xf1, 0xa6, 0x08, 0x87, 0xb0, 0x27, 0xcd, 0xe3, 0x56, 0xd6, 0x1c, 0xf5, 0xa2, 0x4d, 0x7b,
 | |
| 	0x91, 0xf5, 0xc6, 0x73, 0x99, 0x26, 0x3c, 0xcb, 0x38, 0xa1, 0xfc, 0x95, 0x02, 0xa1, 0xfa, 0x37,
 | |
| 	0xc2, 0x3e, 0xb4, 0x33, 0x82, 0x35, 0x11, 0x9c, 0x43, 0xfb, 0x86, 0x16, 0xf4, 0xc3, 0xdc, 0xe6,
 | |
| 	0xbc, 0x0b, 0x9d, 0x5c, 0x94, 0x8d, 0x9d, 0x42, 0xf3, 0x31, 0x56, 0x49, 0x3e, 0x54, 0xda, 0x9e,
 | |
| 	0xb6, 0x6a, 0x05, 0xff, 0xfd, 0xd8, 0xd1, 0x67, 0x15, 0xea, 0x4f, 0xba, 0x83, 0xb7, 0x50, 0xd3,
 | |
| 	0x2c, 0x3c, 0xfc, 0x3d, 0x52, 0xb0, 0xd0, 0x3f, 0xda, 0xde, 0xcc, 0xfc, 0x56, 0x86, 0x0c, 0xaf,
 | |
| 	0xa1, 0xa6, 0xf7, 0x5f, 0xc6, 0x14, 0x82, 0x2b, 0x63, 0x8a, 0x91, 0x05, 0x15, 0xbc, 0x83, 0xba,
 | |
| 	0x59, 0x20, 0x96, 0x84, 0xc5, 0x64, 0xfa, 0xc7, 0x3b, 0xba, 0xdf, 0x9c, 0x07, 0x70, 0xed, 0x4a,
 | |
| 	0xb1, 0x24, 0xdd, 0xc8, 0xa3, 0x7f, 0xb2, 0xab, 0x9d, 0xa3, 0x5e, 0x5c, 0xf3, 0x6f, 0x5f, 0x7e,
 | |
| 	0x05, 0x00, 0x00, 0xff, 0xff, 0x30, 0x48, 0x25, 0x2d, 0x0d, 0x03, 0x00, 0x00,
 | |
| }
 | |
| 
 | |
| // Reference imports to suppress errors if they are not otherwise used.
 | |
| var _ context.Context
 | |
| var _ grpc.ClientConn
 | |
| 
 | |
| // This is a compile-time assertion to ensure that this generated file
 | |
| // is compatible with the grpc package it is being compiled against.
 | |
| const _ = grpc.SupportPackageIsVersion4
 | |
| 
 | |
| // StoreClient is the client API for Store service.
 | |
| //
 | |
| // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
 | |
| type StoreClient interface {
 | |
| 	List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (Store_ListClient, error)
 | |
| 	Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error)
 | |
| 	Write(ctx context.Context, in *WriteRequest, opts ...grpc.CallOption) (*WriteResponse, error)
 | |
| 	Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*DeleteResponse, error)
 | |
| }
 | |
| 
 | |
| type storeClient struct {
 | |
| 	cc *grpc.ClientConn
 | |
| }
 | |
| 
 | |
| func NewStoreClient(cc *grpc.ClientConn) StoreClient {
 | |
| 	return &storeClient{cc}
 | |
| }
 | |
| 
 | |
| func (c *storeClient) List(ctx context.Context, in *ListRequest, opts ...grpc.CallOption) (Store_ListClient, error) {
 | |
| 	stream, err := c.cc.NewStream(ctx, &_Store_serviceDesc.Streams[0], "/go.micro.store.Store/List", opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	x := &storeListClient{stream}
 | |
| 	if err := x.ClientStream.SendMsg(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if err := x.ClientStream.CloseSend(); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return x, nil
 | |
| }
 | |
| 
 | |
| type Store_ListClient interface {
 | |
| 	Recv() (*ListResponse, error)
 | |
| 	grpc.ClientStream
 | |
| }
 | |
| 
 | |
| type storeListClient struct {
 | |
| 	grpc.ClientStream
 | |
| }
 | |
| 
 | |
| func (x *storeListClient) Recv() (*ListResponse, error) {
 | |
| 	m := new(ListResponse)
 | |
| 	if err := x.ClientStream.RecvMsg(m); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return m, nil
 | |
| }
 | |
| 
 | |
| func (c *storeClient) Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error) {
 | |
| 	out := new(ReadResponse)
 | |
| 	err := c.cc.Invoke(ctx, "/go.micro.store.Store/Read", in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| func (c *storeClient) Write(ctx context.Context, in *WriteRequest, opts ...grpc.CallOption) (*WriteResponse, error) {
 | |
| 	out := new(WriteResponse)
 | |
| 	err := c.cc.Invoke(ctx, "/go.micro.store.Store/Write", in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| func (c *storeClient) Delete(ctx context.Context, in *DeleteRequest, opts ...grpc.CallOption) (*DeleteResponse, error) {
 | |
| 	out := new(DeleteResponse)
 | |
| 	err := c.cc.Invoke(ctx, "/go.micro.store.Store/Delete", in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| // StoreServer is the server API for Store service.
 | |
| type StoreServer interface {
 | |
| 	List(*ListRequest, Store_ListServer) error
 | |
| 	Read(context.Context, *ReadRequest) (*ReadResponse, error)
 | |
| 	Write(context.Context, *WriteRequest) (*WriteResponse, error)
 | |
| 	Delete(context.Context, *DeleteRequest) (*DeleteResponse, error)
 | |
| }
 | |
| 
 | |
| func RegisterStoreServer(s *grpc.Server, srv StoreServer) {
 | |
| 	s.RegisterService(&_Store_serviceDesc, srv)
 | |
| }
 | |
| 
 | |
| func _Store_List_Handler(srv interface{}, stream grpc.ServerStream) error {
 | |
| 	m := new(ListRequest)
 | |
| 	if err := stream.RecvMsg(m); err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	return srv.(StoreServer).List(m, &storeListServer{stream})
 | |
| }
 | |
| 
 | |
| type Store_ListServer interface {
 | |
| 	Send(*ListResponse) error
 | |
| 	grpc.ServerStream
 | |
| }
 | |
| 
 | |
| type storeListServer struct {
 | |
| 	grpc.ServerStream
 | |
| }
 | |
| 
 | |
| func (x *storeListServer) Send(m *ListResponse) error {
 | |
| 	return x.ServerStream.SendMsg(m)
 | |
| }
 | |
| 
 | |
| func _Store_Read_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(ReadRequest)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(StoreServer).Read(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/go.micro.store.Store/Read",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(StoreServer).Read(ctx, req.(*ReadRequest))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| func _Store_Write_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(WriteRequest)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(StoreServer).Write(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/go.micro.store.Store/Write",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(StoreServer).Write(ctx, req.(*WriteRequest))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| func _Store_Delete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(DeleteRequest)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(StoreServer).Delete(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/go.micro.store.Store/Delete",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(StoreServer).Delete(ctx, req.(*DeleteRequest))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| var _Store_serviceDesc = grpc.ServiceDesc{
 | |
| 	ServiceName: "go.micro.store.Store",
 | |
| 	HandlerType: (*StoreServer)(nil),
 | |
| 	Methods: []grpc.MethodDesc{
 | |
| 		{
 | |
| 			MethodName: "Read",
 | |
| 			Handler:    _Store_Read_Handler,
 | |
| 		},
 | |
| 		{
 | |
| 			MethodName: "Write",
 | |
| 			Handler:    _Store_Write_Handler,
 | |
| 		},
 | |
| 		{
 | |
| 			MethodName: "Delete",
 | |
| 			Handler:    _Store_Delete_Handler,
 | |
| 		},
 | |
| 	},
 | |
| 	Streams: []grpc.StreamDesc{
 | |
| 		{
 | |
| 			StreamName:    "List",
 | |
| 			Handler:       _Store_List_Handler,
 | |
| 			ServerStreams: true,
 | |
| 		},
 | |
| 	},
 | |
| 	Metadata: "micro/go-micro/store/service/proto/store.proto",
 | |
| }
 |