wheat-cache/storage/dao/interface.gen.go

32 lines
1.5 KiB
Go

// Code generated by gen-struct. DO NOT EDIT.
// make gen-service generated
package dao
import "gitee.com/timedb/wheatCache/pkg/proto"
type Interface interface {
LIndex(*proto.BaseKey, int32) (*proto.LIndexResponse, error)
LLen(*proto.BaseKey) (*proto.LLenResponse, error)
LPop(*proto.BaseKey, int32) (*proto.LPopResponse, error)
LPush(*proto.BaseKey, []string) (*proto.LPushResponse, error)
LPushX(*proto.BaseKey, []string) (*proto.LPushXResponse, error)
LRange(*proto.BaseKey, int32, int32) (*proto.LRangeResponse, error)
LRem(*proto.BaseKey, int32, string) (*proto.LRemResponse, error)
LSet(*proto.BaseKey, int32, string) (*proto.LSetResponse, error)
RPop(*proto.BaseKey, int32) (*proto.RPopResponse, error)
LTrim(*proto.BaseKey, int32, int32) (*proto.LTrimResponse, error)
RPush(*proto.BaseKey, []string) (*proto.RPushResponse, error)
RPushX(*proto.BaseKey, []string) (*proto.RPushXResponse, error)
Set(*proto.BaseKey, string) (*proto.SetResponse, error)
Get(*proto.BaseKey) (*proto.GetResponse, error)
Add(*proto.BaseKey, int32) (*proto.AddResponse, error)
Reduce(*proto.BaseKey, int32) (*proto.ReduceResponse, error)
Setnx(*proto.BaseKey, string) (*proto.SetnxResponse, error)
SetBit(*proto.BaseKey, bool, int32) (*proto.SetBitResponse, error)
GetBit(*proto.BaseKey, int32) (*proto.GetBitResponse, error)
GetRange(*proto.BaseKey, int32, int32) (*proto.GetRangeResponse, error)
GetSet(*proto.BaseKey, string) (*proto.GetSetResponse, error)
StrLen(*proto.BaseKey) (*proto.StrLenResponse, error)
}