model

package
v0.6.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 4, 2021 License: BSD-3-Clause Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const C_Model1 int64 = 2074613123
View Source
const C_Model2 int64 = 3802219577

Variables

View Source
var (
	Enum_name = map[int32]string{
		0: "None",
		1: "Something",
		2: "Else",
	}
	Enum_value = map[string]int32{
		"None":      0,
		"Something": 1,
		"Else":      2,
	}
)

Enum value maps for Enum.

View Source
var File_model_proto protoreflect.FileDescriptor
View Source
var PoolModel1 = poolModel1{}
View Source
var PoolModel2 = poolModel2{}

Functions

func CreateModel1 added in v0.5.25

func CreateModel1(m *Model1) error

func CreateModel1WithTxn added in v0.5.25

func CreateModel1WithTxn(txn *store.Txn, alloc *store.Allocator, m *Model1) (err error)

func CreateModel2 added in v0.5.25

func CreateModel2(m *Model2) error

func CreateModel2WithTxn added in v0.5.25

func CreateModel2WithTxn(txn *store.Txn, alloc *store.Allocator, m *Model2) (err error)

func DeleteModel1

func DeleteModel1(id int32, shardKey int32) error

func DeleteModel1WithTxn added in v0.3.12

func DeleteModel1WithTxn(txn *store.Txn, alloc *store.Allocator, id int32, shardKey int32) error

func DeleteModel2

func DeleteModel2(id int64, shardKey int32, p1 string) error

func DeleteModel2WithTxn added in v0.3.12

func DeleteModel2WithTxn(txn *store.Txn, alloc *store.Allocator, id int64, shardKey int32, p1 string) error

func IterModel1 added in v0.3.14

func IterModel1(txn *store.Txn, alloc *store.Allocator, cb func(m *Model1) bool) error

func IterModel1ByEnum added in v0.3.13

func IterModel1ByEnum(txn *store.Txn, alloc *store.Allocator, enum Enum, cb func(m *Model1) bool) error

func IterModel1ByID added in v0.3.13

func IterModel1ByID(txn *store.Txn, alloc *store.Allocator, id int32, cb func(m *Model1) bool) error

func IterModel2 added in v0.3.14

func IterModel2(txn *store.Txn, alloc *store.Allocator, cb func(m *Model2) bool) error

func IterModel2ByIDAndShardKey added in v0.3.13

func IterModel2ByIDAndShardKey(txn *store.Txn, alloc *store.Allocator, id int64, shardKey int32, cb func(m *Model2) bool) error

func IterModel2ByP1 added in v0.3.13

func IterModel2ByP1(txn *store.Txn, alloc *store.Allocator, p1 string, cb func(m *Model2) bool) error

func SaveModel1

func SaveModel1(m *Model1) error

func SaveModel1WithTxn added in v0.3.8

func SaveModel1WithTxn(txn *store.Txn, alloc *store.Allocator, m *Model1) (err error)

func SaveModel2

func SaveModel2(m *Model2) error

func SaveModel2WithTxn added in v0.3.8

func SaveModel2WithTxn(txn *store.Txn, alloc *store.Allocator, m *Model2) (err error)

func UpdateModel1 added in v0.5.25

func UpdateModel1(id int32, shardKey int32, m *Model1) error

func UpdateModel1WithTxn added in v0.5.25

func UpdateModel1WithTxn(txn *store.Txn, alloc *store.Allocator, m *Model1) error

func UpdateModel2 added in v0.5.25

func UpdateModel2(id int64, shardKey int32, p1 string, m *Model2) error

func UpdateModel2WithTxn added in v0.5.25

func UpdateModel2WithTxn(txn *store.Txn, alloc *store.Allocator, m *Model2) error

Types

type Enum added in v0.3.9

type Enum int32
const (
	Enum_None      Enum = 0
	Enum_Something Enum = 1
	Enum_Else      Enum = 2
)

func (Enum) Descriptor added in v0.3.9

func (Enum) Descriptor() protoreflect.EnumDescriptor

func (Enum) Enum added in v0.3.9

func (x Enum) Enum() *Enum

func (Enum) EnumDescriptor deprecated added in v0.3.9

func (Enum) EnumDescriptor() ([]byte, []int)

Deprecated: Use Enum.Descriptor instead.

func (Enum) Number added in v0.3.9

func (x Enum) Number() protoreflect.EnumNumber

func (Enum) String added in v0.3.9

func (x Enum) String() string

func (Enum) Type added in v0.3.9

func (Enum) Type() protoreflect.EnumType

type Model1

type Model1 struct {
	ID       int32    `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
	ShardKey int32    `protobuf:"varint,2,opt,name=ShardKey,proto3" json:"ShardKey,omitempty"`
	P1       string   `protobuf:"bytes,3,opt,name=P1,proto3" json:"P1,omitempty"`
	P2       []string `protobuf:"bytes,4,rep,name=P2,proto3" json:"P2,omitempty"`
	P5       uint64   `protobuf:"varint,5,opt,name=P5,proto3" json:"P5,omitempty"`
	Enum     Enum     `protobuf:"varint,7,opt,name=Enum,proto3,enum=model.Enum" json:"Enum,omitempty"`
	// contains filtered or unexported fields
}

func ListModel1 added in v0.3.6

func ListModel1(
	offsetID int32, offsetShardKey int32, lo *store.ListOption, cond func(m *Model1) bool,
) ([]*Model1, error)

func ListModel1ByEnum added in v0.3.9

func ListModel1ByEnum(enum Enum, offsetShardKey int32, offsetID int32, lo *store.ListOption) ([]*Model1, error)

func ListModel1ByID added in v0.3.10

func ListModel1ByID(id int32, offsetShardKey int32, lo *store.ListOption) ([]*Model1, error)

func ListModel1ByP1 added in v0.3.9

func ListModel1ByP1(p1 string, lo *store.ListOption) ([]*Model1, error)

func ListModel1ByP2 added in v0.3.9

func ListModel1ByP2(p2 string, lo *store.ListOption) ([]*Model1, error)

func ReadModel1

func ReadModel1(id int32, shardKey int32, m *Model1) (*Model1, error)

func ReadModel1ByEnumAndShardKeyAndID added in v0.3.9

func ReadModel1ByEnumAndShardKeyAndID(enum Enum, shardKey int32, id int32, m *Model1) (*Model1, error)

func ReadModel1ByEnumAndShardKeyAndIDWithTxn added in v0.3.9

func ReadModel1ByEnumAndShardKeyAndIDWithTxn(txn *store.Txn, alloc *store.Allocator, enum Enum, shardKey int32, id int32, m *Model1) (*Model1, error)

func ReadModel1WithTxn added in v0.3.8

func ReadModel1WithTxn(txn *store.Txn, alloc *store.Allocator, id int32, shardKey int32, m *Model1) (*Model1, error)

func (*Model1) DeepCopy

func (x *Model1) DeepCopy(z *Model1)

func (*Model1) Descriptor deprecated

func (*Model1) Descriptor() ([]byte, []int)

Deprecated: Use Model1.ProtoReflect.Descriptor instead.

func (*Model1) GetEnum added in v0.3.9

func (x *Model1) GetEnum() Enum

func (*Model1) GetID

func (x *Model1) GetID() int32

func (*Model1) GetP1

func (x *Model1) GetP1() string

func (*Model1) GetP2

func (x *Model1) GetP2() []string

func (*Model1) GetP5

func (x *Model1) GetP5() uint64

func (*Model1) GetShardKey

func (x *Model1) GetShardKey() int32

func (*Model1) HasP2 added in v0.3.8

func (x *Model1) HasP2(xx string) bool

func (*Model1) Marshal

func (x *Model1) Marshal() ([]byte, error)

func (*Model1) ProtoMessage

func (*Model1) ProtoMessage()

func (*Model1) ProtoReflect

func (x *Model1) ProtoReflect() protoreflect.Message

func (*Model1) PushToContext

func (x *Model1) PushToContext(ctx *edge.RequestCtx)

func (*Model1) Reset

func (x *Model1) Reset()

func (*Model1) String

func (x *Model1) String() string

func (*Model1) Unmarshal

func (x *Model1) Unmarshal(b []byte) error

type Model2

type Model2 struct {
	ID       int64    `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
	ShardKey int32    `protobuf:"varint,2,opt,name=ShardKey,proto3" json:"ShardKey,omitempty"`
	P1       string   `protobuf:"bytes,3,opt,name=P1,proto3" json:"P1,omitempty"`
	P2       []string `protobuf:"bytes,4,rep,name=P2,proto3" json:"P2,omitempty"`
	P5       uint64   `protobuf:"varint,5,opt,name=P5,proto3" json:"P5,omitempty"`
	// contains filtered or unexported fields
}

func ListModel2 added in v0.3.6

func ListModel2(
	offsetID int64, offsetShardKey int32, offsetP1 string, lo *store.ListOption, cond func(m *Model2) bool,
) ([]*Model2, error)

func ListModel2ByIDAndShardKey added in v0.3.10

func ListModel2ByIDAndShardKey(id int64, shardKey int32, offsetP1 string, lo *store.ListOption) ([]*Model2, error)

func ListModel2ByP1 added in v0.3.9

func ListModel2ByP1(p1 string, offsetShardKey int32, offsetID int64, lo *store.ListOption) ([]*Model2, error)

func ReadModel2

func ReadModel2(id int64, shardKey int32, p1 string, m *Model2) (*Model2, error)

func ReadModel2ByP1AndShardKeyAndID

func ReadModel2ByP1AndShardKeyAndID(p1 string, shardKey int32, id int64, m *Model2) (*Model2, error)

func ReadModel2ByP1AndShardKeyAndIDWithTxn added in v0.3.8

func ReadModel2ByP1AndShardKeyAndIDWithTxn(txn *store.Txn, alloc *store.Allocator, p1 string, shardKey int32, id int64, m *Model2) (*Model2, error)

func ReadModel2WithTxn added in v0.3.8

func ReadModel2WithTxn(txn *store.Txn, alloc *store.Allocator, id int64, shardKey int32, p1 string, m *Model2) (*Model2, error)

func (*Model2) DeepCopy

func (x *Model2) DeepCopy(z *Model2)

func (*Model2) Descriptor deprecated

func (*Model2) Descriptor() ([]byte, []int)

Deprecated: Use Model2.ProtoReflect.Descriptor instead.

func (*Model2) GetID

func (x *Model2) GetID() int64

func (*Model2) GetP1

func (x *Model2) GetP1() string

func (*Model2) GetP2

func (x *Model2) GetP2() []string

func (*Model2) GetP5

func (x *Model2) GetP5() uint64

func (*Model2) GetShardKey

func (x *Model2) GetShardKey() int32

func (*Model2) HasP2 added in v0.3.8

func (x *Model2) HasP2(xx string) bool

func (*Model2) Marshal

func (x *Model2) Marshal() ([]byte, error)

func (*Model2) ProtoMessage

func (*Model2) ProtoMessage()

func (*Model2) ProtoReflect

func (x *Model2) ProtoReflect() protoreflect.Message

func (*Model2) PushToContext

func (x *Model2) PushToContext(ctx *edge.RequestCtx)

func (*Model2) Reset

func (x *Model2) Reset()

func (*Model2) String

func (x *Model2) String() string

func (*Model2) Unmarshal

func (x *Model2) Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL