2019-10-11 16:08:50 +03:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
2020-03-12 16:41:30 +03:00
|
|
|
// source: store.proto
|
2019-10-11 16:08:50 +03:00
|
|
|
|
|
|
|
package go_micro_store
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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"`
|
2020-03-12 16:41:30 +03:00
|
|
|
// time.Duration (signed int64 nanoseconds)
|
2019-10-11 16:08:50 +03:00
|
|
|
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) {
|
2020-03-12 16:41:30 +03:00
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{0}
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-01-09 01:23:14 +03:00
|
|
|
type ReadOptions struct {
|
|
|
|
Prefix bool `protobuf:"varint,1,opt,name=prefix,proto3" json:"prefix,omitempty"`
|
2020-03-12 16:41:30 +03:00
|
|
|
Suffix bool `protobuf:"varint,2,opt,name=suffix,proto3" json:"suffix,omitempty"`
|
|
|
|
Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
|
|
Offset uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
|
2019-10-11 16:08:50 +03:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
2020-01-09 01:23:14 +03:00
|
|
|
func (m *ReadOptions) Reset() { *m = ReadOptions{} }
|
|
|
|
func (m *ReadOptions) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ReadOptions) ProtoMessage() {}
|
|
|
|
func (*ReadOptions) Descriptor() ([]byte, []int) {
|
2020-03-12 16:41:30 +03:00
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{1}
|
2020-01-09 01:23:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ReadOptions) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ReadOptions.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ReadOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ReadOptions.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *ReadOptions) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ReadOptions.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *ReadOptions) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ReadOptions.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ReadOptions) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ReadOptions.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ReadOptions proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ReadOptions) GetPrefix() bool {
|
|
|
|
if m != nil {
|
|
|
|
return m.Prefix
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
func (m *ReadOptions) GetSuffix() bool {
|
|
|
|
if m != nil {
|
|
|
|
return m.Suffix
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ReadOptions) GetLimit() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Limit
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ReadOptions) GetOffset() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Offset
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-01-09 01:23:14 +03:00
|
|
|
type ReadRequest struct {
|
|
|
|
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
|
|
Options *ReadOptions `protobuf:"bytes,2,opt,name=options,proto3" json:"options,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:08:50 +03:00
|
|
|
func (m *ReadRequest) Reset() { *m = ReadRequest{} }
|
|
|
|
func (m *ReadRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ReadRequest) ProtoMessage() {}
|
|
|
|
func (*ReadRequest) Descriptor() ([]byte, []int) {
|
2020-03-12 16:41:30 +03:00
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{2}
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-01-09 01:23:14 +03:00
|
|
|
func (m *ReadRequest) GetKey() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Key
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ReadRequest) GetOptions() *ReadOptions {
|
2019-10-11 16:08:50 +03:00
|
|
|
if m != nil {
|
2020-01-09 01:23:14 +03:00
|
|
|
return m.Options
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
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) {
|
2020-03-12 16:41:30 +03:00
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{3}
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
type WriteOptions struct {
|
|
|
|
// time.Time
|
|
|
|
Expiry int64 `protobuf:"varint,1,opt,name=expiry,proto3" json:"expiry,omitempty"`
|
|
|
|
// time.Duration
|
|
|
|
Ttl int64 `protobuf:"varint,2,opt,name=ttl,proto3" json:"ttl,omitempty"`
|
2020-01-09 01:23:14 +03:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
func (m *WriteOptions) Reset() { *m = WriteOptions{} }
|
|
|
|
func (m *WriteOptions) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*WriteOptions) ProtoMessage() {}
|
|
|
|
func (*WriteOptions) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{4}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *WriteOptions) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_WriteOptions.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *WriteOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_WriteOptions.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *WriteOptions) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_WriteOptions.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *WriteOptions) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_WriteOptions.Size(m)
|
|
|
|
}
|
|
|
|
func (m *WriteOptions) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_WriteOptions.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_WriteOptions proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *WriteOptions) GetExpiry() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Expiry
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *WriteOptions) GetTtl() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Ttl
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
type WriteRequest struct {
|
|
|
|
Record *Record `protobuf:"bytes,1,opt,name=record,proto3" json:"record,omitempty"`
|
|
|
|
Options *WriteOptions `protobuf:"bytes,2,opt,name=options,proto3" json:"options,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:08:50 +03:00
|
|
|
func (m *WriteRequest) Reset() { *m = WriteRequest{} }
|
|
|
|
func (m *WriteRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*WriteRequest) ProtoMessage() {}
|
|
|
|
func (*WriteRequest) Descriptor() ([]byte, []int) {
|
2020-03-12 16:41:30 +03:00
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{5}
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-01-09 01:23:14 +03:00
|
|
|
func (m *WriteRequest) GetRecord() *Record {
|
2019-10-11 16:08:50 +03:00
|
|
|
if m != nil {
|
2020-01-09 01:23:14 +03:00
|
|
|
return m.Record
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
func (m *WriteRequest) GetOptions() *WriteOptions {
|
|
|
|
if m != nil {
|
|
|
|
return m.Options
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:08:50 +03:00
|
|
|
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) {
|
2020-03-12 16:41:30 +03:00
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{6}
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
type DeleteOptions struct {
|
2019-10-11 16:08:50 +03:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
func (m *DeleteOptions) Reset() { *m = DeleteOptions{} }
|
|
|
|
func (m *DeleteOptions) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*DeleteOptions) ProtoMessage() {}
|
|
|
|
func (*DeleteOptions) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{7}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *DeleteOptions) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_DeleteOptions.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *DeleteOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_DeleteOptions.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *DeleteOptions) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_DeleteOptions.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *DeleteOptions) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_DeleteOptions.Size(m)
|
|
|
|
}
|
|
|
|
func (m *DeleteOptions) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_DeleteOptions.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_DeleteOptions proto.InternalMessageInfo
|
|
|
|
|
|
|
|
type DeleteRequest struct {
|
|
|
|
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
|
|
Options *DeleteOptions `protobuf:"bytes,2,opt,name=options,proto3" json:"options,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:08:50 +03:00
|
|
|
func (m *DeleteRequest) Reset() { *m = DeleteRequest{} }
|
|
|
|
func (m *DeleteRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*DeleteRequest) ProtoMessage() {}
|
|
|
|
func (*DeleteRequest) Descriptor() ([]byte, []int) {
|
2020-03-12 16:41:30 +03:00
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{8}
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-01-09 01:23:14 +03:00
|
|
|
func (m *DeleteRequest) GetKey() string {
|
2019-10-11 16:08:50 +03:00
|
|
|
if m != nil {
|
2020-01-09 01:23:14 +03:00
|
|
|
return m.Key
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
2020-01-09 01:23:14 +03:00
|
|
|
return ""
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
func (m *DeleteRequest) GetOptions() *DeleteOptions {
|
|
|
|
if m != nil {
|
|
|
|
return m.Options
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-11 16:08:50 +03:00
|
|
|
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) {
|
2020-03-12 16:41:30 +03:00
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{9}
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
type ListOptions struct {
|
|
|
|
Prefix string `protobuf:"bytes,1,opt,name=prefix,proto3" json:"prefix,omitempty"`
|
|
|
|
Suffix string `protobuf:"bytes,2,opt,name=suffix,proto3" json:"suffix,omitempty"`
|
|
|
|
Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
|
|
Offset uint64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
|
2019-10-11 16:08:50 +03:00
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
func (m *ListOptions) Reset() { *m = ListOptions{} }
|
|
|
|
func (m *ListOptions) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ListOptions) ProtoMessage() {}
|
|
|
|
func (*ListOptions) Descriptor() ([]byte, []int) {
|
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{10}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ListOptions) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ListOptions.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ListOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ListOptions.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *ListOptions) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ListOptions.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *ListOptions) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ListOptions.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ListOptions) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ListOptions.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ListOptions proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ListOptions) GetPrefix() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Prefix
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ListOptions) GetSuffix() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Suffix
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ListOptions) GetLimit() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Limit
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ListOptions) GetOffset() uint64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Offset
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
type ListRequest struct {
|
|
|
|
Options *ListOptions `protobuf:"bytes,1,opt,name=options,proto3" json:"options,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListRequest) Reset() { *m = ListRequest{} }
|
|
|
|
func (m *ListRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ListRequest) ProtoMessage() {}
|
|
|
|
func (*ListRequest) Descriptor() ([]byte, []int) {
|
2020-03-12 16:41:30 +03:00
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{11}
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ListRequest.Unmarshal(m, b)
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ListRequest.Marshal(b, m, deterministic)
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ListRequest.Merge(m, src)
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ListRequest.Size(m)
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ListRequest.DiscardUnknown(m)
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
2019-10-24 00:05:39 +03:00
|
|
|
var xxx_messageInfo_ListRequest proto.InternalMessageInfo
|
2019-10-11 16:08:50 +03:00
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
func (m *ListRequest) GetOptions() *ListOptions {
|
|
|
|
if m != nil {
|
|
|
|
return m.Options
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-24 00:05:39 +03:00
|
|
|
type ListResponse struct {
|
2020-03-12 16:41:30 +03:00
|
|
|
Keys []string `protobuf:"bytes,2,rep,name=keys,proto3" json:"keys,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListResponse) Reset() { *m = ListResponse{} }
|
|
|
|
func (m *ListResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ListResponse) ProtoMessage() {}
|
|
|
|
func (*ListResponse) Descriptor() ([]byte, []int) {
|
2020-03-12 16:41:30 +03:00
|
|
|
return fileDescriptor_98bbca36ef968dfc, []int{12}
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ListResponse.Unmarshal(m, b)
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ListResponse.Marshal(b, m, deterministic)
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ListResponse.Merge(m, src)
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ListResponse.Size(m)
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
2019-10-24 00:05:39 +03:00
|
|
|
func (m *ListResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ListResponse.DiscardUnknown(m)
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
2019-10-24 00:05:39 +03:00
|
|
|
var xxx_messageInfo_ListResponse proto.InternalMessageInfo
|
2019-10-11 16:08:50 +03:00
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
func (m *ListResponse) GetKeys() []string {
|
2019-10-11 16:08:50 +03:00
|
|
|
if m != nil {
|
2020-03-12 16:41:30 +03:00
|
|
|
return m.Keys
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*Record)(nil), "go.micro.store.Record")
|
2020-01-09 01:23:14 +03:00
|
|
|
proto.RegisterType((*ReadOptions)(nil), "go.micro.store.ReadOptions")
|
2019-10-11 16:08:50 +03:00
|
|
|
proto.RegisterType((*ReadRequest)(nil), "go.micro.store.ReadRequest")
|
|
|
|
proto.RegisterType((*ReadResponse)(nil), "go.micro.store.ReadResponse")
|
2020-03-12 16:41:30 +03:00
|
|
|
proto.RegisterType((*WriteOptions)(nil), "go.micro.store.WriteOptions")
|
2019-10-11 16:08:50 +03:00
|
|
|
proto.RegisterType((*WriteRequest)(nil), "go.micro.store.WriteRequest")
|
|
|
|
proto.RegisterType((*WriteResponse)(nil), "go.micro.store.WriteResponse")
|
2020-03-12 16:41:30 +03:00
|
|
|
proto.RegisterType((*DeleteOptions)(nil), "go.micro.store.DeleteOptions")
|
2019-10-11 16:08:50 +03:00
|
|
|
proto.RegisterType((*DeleteRequest)(nil), "go.micro.store.DeleteRequest")
|
|
|
|
proto.RegisterType((*DeleteResponse)(nil), "go.micro.store.DeleteResponse")
|
2020-03-12 16:41:30 +03:00
|
|
|
proto.RegisterType((*ListOptions)(nil), "go.micro.store.ListOptions")
|
2019-10-24 00:05:39 +03:00
|
|
|
proto.RegisterType((*ListRequest)(nil), "go.micro.store.ListRequest")
|
|
|
|
proto.RegisterType((*ListResponse)(nil), "go.micro.store.ListResponse")
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|
|
|
|
|
2020-03-12 16:41:30 +03:00
|
|
|
func init() { proto.RegisterFile("store.proto", fileDescriptor_98bbca36ef968dfc) }
|
|
|
|
|
|
|
|
var fileDescriptor_98bbca36ef968dfc = []byte{
|
|
|
|
// 463 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x5d, 0x6b, 0xd4, 0x40,
|
|
|
|
0x14, 0xed, 0x6c, 0xb2, 0x69, 0xf7, 0x26, 0xd6, 0x65, 0x90, 0x12, 0xb4, 0x95, 0x30, 0x4f, 0x79,
|
|
|
|
0x0a, 0x65, 0xc5, 0x8f, 0x47, 0xc1, 0x2a, 0x2a, 0x82, 0x30, 0x82, 0x82, 0x6f, 0xb5, 0x9d, 0xc8,
|
|
|
|
0x90, 0xb4, 0x13, 0x67, 0x66, 0x4b, 0xf7, 0x0f, 0xf9, 0x3b, 0x65, 0xbe, 0x76, 0xb3, 0x31, 0x79,
|
|
|
|
0xe9, 0x5b, 0xee, 0x9d, 0x3b, 0xe7, 0xdc, 0x73, 0xe6, 0x10, 0x48, 0x95, 0x16, 0x92, 0x55, 0x9d,
|
|
|
|
0x14, 0x5a, 0xe0, 0xe3, 0xdf, 0xa2, 0xba, 0xe1, 0x57, 0x52, 0x54, 0xb6, 0x4b, 0x3e, 0x42, 0x42,
|
|
|
|
0xd9, 0x95, 0x90, 0xd7, 0x78, 0x09, 0x51, 0xc3, 0x36, 0x39, 0x2a, 0x50, 0xb9, 0xa0, 0xe6, 0x13,
|
|
|
|
0x3f, 0x81, 0xf9, 0xdd, 0x65, 0xbb, 0x66, 0xf9, 0xac, 0x40, 0x65, 0x46, 0x5d, 0x81, 0x4f, 0x20,
|
|
|
|
0x61, 0xf7, 0x1d, 0x97, 0x9b, 0x3c, 0x2a, 0x50, 0x19, 0x51, 0x5f, 0x91, 0x06, 0x52, 0xca, 0x2e,
|
|
|
|
0xaf, 0xbf, 0x76, 0x9a, 0x8b, 0x5b, 0x65, 0xc6, 0x3a, 0xc9, 0x6a, 0x7e, 0x6f, 0x11, 0x8f, 0xa8,
|
|
|
|
0xaf, 0x4c, 0x5f, 0xad, 0x6b, 0xd3, 0x9f, 0xb9, 0xbe, 0xab, 0x0c, 0x59, 0xcb, 0x6f, 0xb8, 0xb6,
|
|
|
|
0xa8, 0x31, 0x75, 0x85, 0x99, 0x16, 0x75, 0xad, 0x98, 0xce, 0x63, 0xdb, 0xf6, 0x15, 0xf9, 0xee,
|
|
|
|
0xc8, 0x28, 0xfb, 0xb3, 0x66, 0x4a, 0x8f, 0xec, 0xfe, 0x12, 0x0e, 0x85, 0xdb, 0xc4, 0xf2, 0xa4,
|
|
|
|
0xab, 0x67, 0xd5, 0xbe, 0xf2, 0xaa, 0xb7, 0x2c, 0x0d, 0xb3, 0xe4, 0x2d, 0x64, 0x0e, 0x57, 0x75,
|
|
|
|
0xe2, 0x56, 0x31, 0x7c, 0x0e, 0x87, 0xd2, 0xda, 0xa3, 0x72, 0x54, 0x44, 0x65, 0xba, 0x3a, 0xf9,
|
|
|
|
0x1f, 0xc6, 0x1c, 0xd3, 0x30, 0x46, 0xde, 0x40, 0xf6, 0x43, 0x72, 0xcd, 0x7a, 0x3e, 0x78, 0xbb,
|
|
|
|
0x50, 0xdf, 0x2e, 0xb3, 0xb2, 0xd6, 0xad, 0x5d, 0x2e, 0xa2, 0xe6, 0x93, 0xdc, 0xf9, 0x9b, 0x41,
|
|
|
|
0x54, 0x05, 0x89, 0x03, 0xb5, 0x37, 0xa7, 0xa9, 0xfd, 0x14, 0x7e, 0x35, 0x94, 0x7c, 0x3a, 0xbc,
|
|
|
|
0xd0, 0x5f, 0x6c, 0xa7, 0xf9, 0x31, 0x3c, 0xf2, 0xbc, 0x4e, 0xb4, 0x69, 0x5c, 0xb0, 0x96, 0x6d,
|
|
|
|
0x47, 0xc9, 0xcf, 0xd0, 0x98, 0xf6, 0xfb, 0xf5, 0x90, 0xfc, 0x6c, 0x48, 0xbe, 0x07, 0xb9, 0x63,
|
|
|
|
0x5f, 0xc2, 0x71, 0xc0, 0xf6, 0xf4, 0x0d, 0xa4, 0x5f, 0xb8, 0xd2, 0xe3, 0x41, 0x5a, 0x4c, 0x04,
|
|
|
|
0x69, 0xf1, 0xc0, 0x20, 0x5d, 0x38, 0xb2, 0x20, 0xac, 0x17, 0x1b, 0x34, 0x1e, 0x9b, 0xde, 0x6a,
|
|
|
|
0x3b, 0x11, 0x25, 0x64, 0x0e, 0xc5, 0xc7, 0x06, 0x43, 0xdc, 0xb0, 0x8d, 0xb1, 0x22, 0x2a, 0x17,
|
|
|
|
0xd4, 0x7e, 0x7f, 0x8e, 0x8f, 0xd0, 0x72, 0xb6, 0xfa, 0x3b, 0x83, 0xf9, 0x37, 0x03, 0x84, 0xdf,
|
|
|
|
0x41, 0x6c, 0xa2, 0x86, 0x47, 0x83, 0xe9, 0xf7, 0x79, 0x7a, 0x3a, 0x7e, 0xe8, 0x9d, 0x3a, 0xc0,
|
|
|
|
0x1f, 0x60, 0x6e, 0xdf, 0x0e, 0x8f, 0xbf, 0x75, 0x80, 0x39, 0x9b, 0x38, 0xdd, 0xe2, 0x7c, 0x82,
|
|
|
|
0xc4, 0xbd, 0x02, 0x9e, 0x78, 0xb7, 0x80, 0xf4, 0x7c, 0xea, 0x78, 0x0b, 0xf5, 0x1e, 0x62, 0xe3,
|
|
|
|
0x05, 0x1e, 0x75, 0x6e, 0x52, 0x57, 0xdf, 0x3e, 0x72, 0x70, 0x8e, 0x7e, 0x25, 0xf6, 0x7f, 0xf5,
|
|
|
|
0xe2, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa5, 0x11, 0xc3, 0x50, 0xbe, 0x04, 0x00, 0x00,
|
2019-10-11 16:08:50 +03:00
|
|
|
}
|