i64listi64

package
v0.1.1 Latest Latest
Warning

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

Go to latest
Published: Nov 7, 2020 License: Apache-2.0 Imports: 7 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var GoUnusedProtection__ int
View Source
var I64ListI64ServiceBumpUpResult_Success_DEFAULT bool
View Source
var I64ListI64ServiceCountResult_Success_DEFAULT int32
View Source
var I64ListI64ServiceExistedResult_Success_DEFAULT bool
View Source
var I64ListI64ServiceInsertAtResult_Success_DEFAULT bool
View Source
var I64ListI64ServiceInsertResult_Success_DEFAULT bool
View Source
var I64ListI64ServiceMultiCountResult_Success_DEFAULT map[TKey]int32
View Source
var I64ListI64ServiceMultiExistedResult_Success_DEFAULT map[TKey]bool
View Source
var I64ListI64ServiceMultiGetListAllResult_Success_DEFAULT map[TKey]TEntryList
View Source
var I64ListI64ServiceMultiGetSliceResult_Success_DEFAULT map[TKey]TEntryList
View Source
var I64ListI64ServiceMultiGetSliceReverseResult_Success_DEFAULT map[TKey]TEntryList
View Source
var I64ListI64ServiceMultiPutResult_Success_DEFAULT map[TKey]bool
View Source
var I64ListI64ServicePutListResult_Success_DEFAULT bool
View Source
var I64ListI64ServicePutResult_Success_DEFAULT bool
View Source
var I64ListI64ServicePutValueResult_Success_DEFAULT bool
View Source
var I64ListI64ServiceRemoveAtResult_Success_DEFAULT bool
View Source
var I64ListI64ServiceRemoveListResult_Success_DEFAULT bool
View Source
var I64ListI64ServiceRemoveResult_Success_DEFAULT bool

Functions

This section is empty.

Types

type I64ListI64Service

type I64ListI64Service interface {
	// Count entry number
	//
	// Parameters:
	//  - Key
	Count(ctx context.Context, key TKey) (r int32, err error)
	// Test entry existence
	//
	// Parameters:
	//  - Key
	//  - Entry
	Existed(ctx context.Context, key TKey, entry TEntry) (r bool, err error)
	// Get list of all entries
	//
	// Parameters:
	//  - Key
	GetListAll(ctx context.Context, key TKey) (r TEntryList, err error)
	// Parameters:
	//  - Key
	GetAll(ctx context.Context, key TKey) (r TEntryList, err error)
	// Get list entry slice
	//
	// Parameters:
	//  - Key
	//  - Start
	//  - Length
	GetSlice(ctx context.Context, key TKey, start int32, length int32) (r TEntryList, err error)
	// Parameters:
	//  - Key
	//  - EntryStart
	//  - Length
	GetSliceFromEntry(ctx context.Context, key TKey, entryStart TEntry, length int32) (r TEntryList, err error)
	// Parameters:
	//  - Key
	//  - EntryStart
	//  - Length
	GetSliceFromId(ctx context.Context, key TKey, entryStart TEntry, length int32) (r TEntryList, err error)
	// Parameters:
	//  - Key
	//  - Start
	//  - Length
	GetSliceReverse(ctx context.Context, key TKey, start int32, length int32) (r TEntryList, err error)
	// Parameters:
	//  - Key
	//  - EntryStart
	//  - Length
	GetSliceFromEntryReverse(ctx context.Context, key TKey, entryStart TEntry, length int32) (r TEntryList, err error)
	// Parameters:
	//  - Key
	//  - EntryStart
	//  - Length
	GetSliceFromIdReverse(ctx context.Context, key TKey, entryStart TEntry, length int32) (r TEntryList, err error)
	// Put an entry, update on entry existence
	// For unsorted list this insert at end()
	//
	// Parameters:
	//  - Key
	//  - Entry
	Put(ctx context.Context, key TKey, entry TEntry) (r bool, err error)
	// Clear old data, put new value on the key
	//
	// Parameters:
	//  - Key
	//  - Value
	PutValue(ctx context.Context, key TKey, value *TValue) (r bool, err error)
	// Put list of entry, update on entry existence
	//
	// Parameters:
	//  - Key
	//  - EntryList
	PutList(ctx context.Context, key TKey, entryList TEntryList) (r bool, err error)
	// Insert an entry, return false on key existence
	// @return true on successful insertion, false otherwise (due to length limit or entry existed on sorted list)
	// For unsorted list this insert at end()
	//
	// Parameters:
	//  - Key
	//  - Entry
	Insert(ctx context.Context, key TKey, entry TEntry) (r bool, err error)
	// Insert an entry at index
	// @param index considered count from begin if non-negative, count from end otherwise
	// the entry will have index = start after insertion
	// e.g. 0 = push_front, -1 = push_back, -2 = the entry before last entry
	// For sorted list this calls insert
	//
	// Parameters:
	//  - Key
	//  - Entry
	//  - Index
	InsertAt(ctx context.Context, key TKey, entry TEntry, index int32) (r bool, err error)
	// Remove an entry, return false if entry not found
	//
	// Parameters:
	//  - Key
	//  - Entry
	Remove(ctx context.Context, key TKey, entry TEntry) (r bool, err error)
	// Remove entry by index
	// @param index similar to insertAt
	//
	// Parameters:
	//  - Key
	//  - Index
	RemoveAt(ctx context.Context, key TKey, index int32) (r bool, err error)
	// Make an entry the first in unsorted list and return true if it existed, do nothing on sorted list return false
	//
	// Parameters:
	//  - Key
	//  - Entry
	BumpUp(ctx context.Context, key TKey, entry TEntry) (r bool, err error)
	// Remove entry list
	//
	// Parameters:
	//  - Key
	//  - EntryList
	RemoveList(ctx context.Context, key TKey, entryList TEntryList) (r bool, err error)
	// Clear data on given key
	//
	// Parameters:
	//  - Key
	ClearData(ctx context.Context, key TKey) (err error)
	// Split the list into 2, return first entry of new list, or -1 if fails
	//
	// Parameters:
	//  - OldKey
	//  - NewKey_
	//  - OrigLength
	Split(ctx context.Context, oldKey TKey, newKey TKey, origLength int32) (r TEntry, err error)
	// Parameters:
	//  - KeyList
	MultiCount(ctx context.Context, keyList TKeyList) (r map[TKey]int32, err error)
	// Parameters:
	//  - KeyList
	//  - Entry
	MultiExisted(ctx context.Context, keyList TKeyList, entry TEntry) (r map[TKey]bool, err error)
	// Parameters:
	//  - KeyList
	MultiGetListAll(ctx context.Context, keyList TKeyList) (r map[TKey]TEntryList, err error)
	// Parameters:
	//  - KeyList
	//  - Start
	//  - Length
	MultiGetSlice(ctx context.Context, keyList TKeyList, start int32, length int32) (r map[TKey]TEntryList, err error)
	// Parameters:
	//  - KeyList
	//  - Start
	//  - Length
	MultiGetSliceReverse(ctx context.Context, keyList TKeyList, start int32, length int32) (r map[TKey]TEntryList, err error)
	// Put same entry to multiple keys
	//
	// Parameters:
	//  - KeyList
	//  - Entry
	MultiPut(ctx context.Context, keyList TKeyList, entry TEntry) (r map[TKey]bool, err error)
	// Parameters:
	//  - Key
	//  - Entry
	PutOw(ctx context.Context, key TKey, entry TEntry) (err error)
	// Parameters:
	//  - UidList
	//  - Entry
	PutMultiKeyOw(ctx context.Context, uidList TKeyList, entry TEntry) (err error)
	// Parameters:
	//  - Key
	//  - Entry
	RemoveOw(ctx context.Context, key TKey, entry TEntry) (err error)
}

type I64ListI64ServiceBumpUpArgs

type I64ListI64ServiceBumpUpArgs struct {
	Key   TKey   `thrift:"key,1" db:"key" json:"key"`
	Entry TEntry `thrift:"entry,2" db:"entry" json:"entry"`
}

Attributes:

  • Key
  • Entry

func NewI64ListI64ServiceBumpUpArgs

func NewI64ListI64ServiceBumpUpArgs() *I64ListI64ServiceBumpUpArgs

func (*I64ListI64ServiceBumpUpArgs) GetEntry

func (p *I64ListI64ServiceBumpUpArgs) GetEntry() TEntry

func (*I64ListI64ServiceBumpUpArgs) GetKey

func (p *I64ListI64ServiceBumpUpArgs) GetKey() TKey

func (*I64ListI64ServiceBumpUpArgs) Read

func (*I64ListI64ServiceBumpUpArgs) ReadField1

func (p *I64ListI64ServiceBumpUpArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceBumpUpArgs) ReadField2

func (p *I64ListI64ServiceBumpUpArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServiceBumpUpArgs) String

func (p *I64ListI64ServiceBumpUpArgs) String() string

func (*I64ListI64ServiceBumpUpArgs) Write

type I64ListI64ServiceBumpUpResult

type I64ListI64ServiceBumpUpResult struct {
	Success *bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceBumpUpResult

func NewI64ListI64ServiceBumpUpResult() *I64ListI64ServiceBumpUpResult

func (*I64ListI64ServiceBumpUpResult) GetSuccess

func (p *I64ListI64ServiceBumpUpResult) GetSuccess() bool

func (*I64ListI64ServiceBumpUpResult) IsSetSuccess

func (p *I64ListI64ServiceBumpUpResult) IsSetSuccess() bool

func (*I64ListI64ServiceBumpUpResult) Read

func (*I64ListI64ServiceBumpUpResult) ReadField0

func (p *I64ListI64ServiceBumpUpResult) ReadField0(iprot thrift.TProtocol) error

func (*I64ListI64ServiceBumpUpResult) String

func (*I64ListI64ServiceBumpUpResult) Write

type I64ListI64ServiceClearDataArgs

type I64ListI64ServiceClearDataArgs struct {
	Key TKey `thrift:"key,1" db:"key" json:"key"`
}

Attributes:

  • Key

func NewI64ListI64ServiceClearDataArgs

func NewI64ListI64ServiceClearDataArgs() *I64ListI64ServiceClearDataArgs

func (*I64ListI64ServiceClearDataArgs) GetKey

func (*I64ListI64ServiceClearDataArgs) Read

func (*I64ListI64ServiceClearDataArgs) ReadField1

func (*I64ListI64ServiceClearDataArgs) String

func (*I64ListI64ServiceClearDataArgs) Write

type I64ListI64ServiceClearDataResult

type I64ListI64ServiceClearDataResult struct {
}

func NewI64ListI64ServiceClearDataResult

func NewI64ListI64ServiceClearDataResult() *I64ListI64ServiceClearDataResult

func (*I64ListI64ServiceClearDataResult) Read

func (*I64ListI64ServiceClearDataResult) String

func (*I64ListI64ServiceClearDataResult) Write

type I64ListI64ServiceClient

type I64ListI64ServiceClient struct {
	// contains filtered or unexported fields
}

func NewI64ListI64ServiceClient

func NewI64ListI64ServiceClient(c thrift.TClient) *I64ListI64ServiceClient

func NewI64ListI64ServiceClientFactory deprecated

func NewI64ListI64ServiceClientFactory(t thrift.TTransport, f thrift.TProtocolFactory) *I64ListI64ServiceClient

Deprecated: Use NewI64ListI64Service instead

func NewI64ListI64ServiceClientProtocol deprecated

func NewI64ListI64ServiceClientProtocol(t thrift.TTransport, iprot thrift.TProtocol, oprot thrift.TProtocol) *I64ListI64ServiceClient

Deprecated: Use NewI64ListI64Service instead

func (*I64ListI64ServiceClient) BumpUp

func (p *I64ListI64ServiceClient) BumpUp(ctx context.Context, key TKey, entry TEntry) (r bool, err error)

Make an entry the first in unsorted list and return true if it existed, do nothing on sorted list return false

Parameters:

  • Key
  • Entry

func (*I64ListI64ServiceClient) ClearData

func (p *I64ListI64ServiceClient) ClearData(ctx context.Context, key TKey) (err error)

Clear data on given key

Parameters:

  • Key

func (*I64ListI64ServiceClient) Count

func (p *I64ListI64ServiceClient) Count(ctx context.Context, key TKey) (r int32, err error)

Count entry number

Parameters:

  • Key

func (*I64ListI64ServiceClient) Existed

func (p *I64ListI64ServiceClient) Existed(ctx context.Context, key TKey, entry TEntry) (r bool, err error)

Test entry existence

Parameters:

  • Key
  • Entry

func (*I64ListI64ServiceClient) GetAll

func (p *I64ListI64ServiceClient) GetAll(ctx context.Context, key TKey) (r TEntryList, err error)

Parameters:

  • Key

func (*I64ListI64ServiceClient) GetListAll

func (p *I64ListI64ServiceClient) GetListAll(ctx context.Context, key TKey) (r TEntryList, err error)

Get list of all entries

Parameters:

  • Key

func (*I64ListI64ServiceClient) GetSlice

func (p *I64ListI64ServiceClient) GetSlice(ctx context.Context, key TKey, start int32, length int32) (r TEntryList, err error)

Get list entry slice

Parameters:

  • Key
  • Start
  • Length

func (*I64ListI64ServiceClient) GetSliceFromEntry

func (p *I64ListI64ServiceClient) GetSliceFromEntry(ctx context.Context, key TKey, entryStart TEntry, length int32) (r TEntryList, err error)

Parameters:

  • Key
  • EntryStart
  • Length

func (*I64ListI64ServiceClient) GetSliceFromEntryReverse

func (p *I64ListI64ServiceClient) GetSliceFromEntryReverse(ctx context.Context, key TKey, entryStart TEntry, length int32) (r TEntryList, err error)

Parameters:

  • Key
  • EntryStart
  • Length

func (*I64ListI64ServiceClient) GetSliceFromId

func (p *I64ListI64ServiceClient) GetSliceFromId(ctx context.Context, key TKey, entryStart TEntry, length int32) (r TEntryList, err error)

Parameters:

  • Key
  • EntryStart
  • Length

func (*I64ListI64ServiceClient) GetSliceFromIdReverse

func (p *I64ListI64ServiceClient) GetSliceFromIdReverse(ctx context.Context, key TKey, entryStart TEntry, length int32) (r TEntryList, err error)

Parameters:

  • Key
  • EntryStart
  • Length

func (*I64ListI64ServiceClient) GetSliceReverse

func (p *I64ListI64ServiceClient) GetSliceReverse(ctx context.Context, key TKey, start int32, length int32) (r TEntryList, err error)

Parameters:

  • Key
  • Start
  • Length

func (*I64ListI64ServiceClient) Insert

func (p *I64ListI64ServiceClient) Insert(ctx context.Context, key TKey, entry TEntry) (r bool, err error)

Insert an entry, return false on key existence @return true on successful insertion, false otherwise (due to length limit or entry existed on sorted list) For unsorted list this insert at end()

Parameters:

  • Key
  • Entry

func (*I64ListI64ServiceClient) InsertAt

func (p *I64ListI64ServiceClient) InsertAt(ctx context.Context, key TKey, entry TEntry, index int32) (r bool, err error)

Insert an entry at index @param index considered count from begin if non-negative, count from end otherwise the entry will have index = start after insertion e.g. 0 = push_front, -1 = push_back, -2 = the entry before last entry For sorted list this calls insert

Parameters:

  • Key
  • Entry
  • Index

func (*I64ListI64ServiceClient) MultiCount

func (p *I64ListI64ServiceClient) MultiCount(ctx context.Context, keyList TKeyList) (r map[TKey]int32, err error)

Parameters:

  • KeyList

func (*I64ListI64ServiceClient) MultiExisted

func (p *I64ListI64ServiceClient) MultiExisted(ctx context.Context, keyList TKeyList, entry TEntry) (r map[TKey]bool, err error)

Parameters:

  • KeyList
  • Entry

func (*I64ListI64ServiceClient) MultiGetListAll

func (p *I64ListI64ServiceClient) MultiGetListAll(ctx context.Context, keyList TKeyList) (r map[TKey]TEntryList, err error)

Parameters:

  • KeyList

func (*I64ListI64ServiceClient) MultiGetSlice

func (p *I64ListI64ServiceClient) MultiGetSlice(ctx context.Context, keyList TKeyList, start int32, length int32) (r map[TKey]TEntryList, err error)

Parameters:

  • KeyList
  • Start
  • Length

func (*I64ListI64ServiceClient) MultiGetSliceReverse

func (p *I64ListI64ServiceClient) MultiGetSliceReverse(ctx context.Context, keyList TKeyList, start int32, length int32) (r map[TKey]TEntryList, err error)

Parameters:

  • KeyList
  • Start
  • Length

func (*I64ListI64ServiceClient) MultiPut

func (p *I64ListI64ServiceClient) MultiPut(ctx context.Context, keyList TKeyList, entry TEntry) (r map[TKey]bool, err error)

Put same entry to multiple keys

Parameters:

  • KeyList
  • Entry

func (*I64ListI64ServiceClient) Put

func (p *I64ListI64ServiceClient) Put(ctx context.Context, key TKey, entry TEntry) (r bool, err error)

Put an entry, update on entry existence For unsorted list this insert at end()

Parameters:

  • Key
  • Entry

func (*I64ListI64ServiceClient) PutList

func (p *I64ListI64ServiceClient) PutList(ctx context.Context, key TKey, entryList TEntryList) (r bool, err error)

Put list of entry, update on entry existence

Parameters:

  • Key
  • EntryList

func (*I64ListI64ServiceClient) PutMultiKeyOw

func (p *I64ListI64ServiceClient) PutMultiKeyOw(ctx context.Context, uidList TKeyList, entry TEntry) (err error)

Parameters:

  • UidList
  • Entry

func (*I64ListI64ServiceClient) PutOw

func (p *I64ListI64ServiceClient) PutOw(ctx context.Context, key TKey, entry TEntry) (err error)

Parameters:

  • Key
  • Entry

func (*I64ListI64ServiceClient) PutValue

func (p *I64ListI64ServiceClient) PutValue(ctx context.Context, key TKey, value *TValue) (r bool, err error)

Clear old data, put new value on the key

Parameters:

  • Key
  • Value

func (*I64ListI64ServiceClient) Remove

func (p *I64ListI64ServiceClient) Remove(ctx context.Context, key TKey, entry TEntry) (r bool, err error)

Remove an entry, return false if entry not found

Parameters:

  • Key
  • Entry

func (*I64ListI64ServiceClient) RemoveAt

func (p *I64ListI64ServiceClient) RemoveAt(ctx context.Context, key TKey, index int32) (r bool, err error)

Remove entry by index @param index similar to insertAt

Parameters:

  • Key
  • Index

func (*I64ListI64ServiceClient) RemoveList

func (p *I64ListI64ServiceClient) RemoveList(ctx context.Context, key TKey, entryList TEntryList) (r bool, err error)

Remove entry list

Parameters:

  • Key
  • EntryList

func (*I64ListI64ServiceClient) RemoveOw

func (p *I64ListI64ServiceClient) RemoveOw(ctx context.Context, key TKey, entry TEntry) (err error)

Parameters:

  • Key
  • Entry

func (*I64ListI64ServiceClient) Split

func (p *I64ListI64ServiceClient) Split(ctx context.Context, oldKey TKey, newKey TKey, origLength int32) (r TEntry, err error)

Split the list into 2, return first entry of new list, or -1 if fails

Parameters:

  • OldKey
  • NewKey_
  • OrigLength

type I64ListI64ServiceCountArgs

type I64ListI64ServiceCountArgs struct {
	Key TKey `thrift:"key,1" db:"key" json:"key"`
}

Attributes:

  • Key

func NewI64ListI64ServiceCountArgs

func NewI64ListI64ServiceCountArgs() *I64ListI64ServiceCountArgs

func (*I64ListI64ServiceCountArgs) GetKey

func (p *I64ListI64ServiceCountArgs) GetKey() TKey

func (*I64ListI64ServiceCountArgs) Read

func (*I64ListI64ServiceCountArgs) ReadField1

func (p *I64ListI64ServiceCountArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceCountArgs) String

func (p *I64ListI64ServiceCountArgs) String() string

func (*I64ListI64ServiceCountArgs) Write

type I64ListI64ServiceCountResult

type I64ListI64ServiceCountResult struct {
	Success *int32 `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceCountResult

func NewI64ListI64ServiceCountResult() *I64ListI64ServiceCountResult

func (*I64ListI64ServiceCountResult) GetSuccess

func (p *I64ListI64ServiceCountResult) GetSuccess() int32

func (*I64ListI64ServiceCountResult) IsSetSuccess

func (p *I64ListI64ServiceCountResult) IsSetSuccess() bool

func (*I64ListI64ServiceCountResult) Read

func (*I64ListI64ServiceCountResult) ReadField0

func (p *I64ListI64ServiceCountResult) ReadField0(iprot thrift.TProtocol) error

func (*I64ListI64ServiceCountResult) String

func (*I64ListI64ServiceCountResult) Write

type I64ListI64ServiceExistedArgs

type I64ListI64ServiceExistedArgs struct {
	Key   TKey   `thrift:"key,1" db:"key" json:"key"`
	Entry TEntry `thrift:"entry,2" db:"entry" json:"entry"`
}

Attributes:

  • Key
  • Entry

func NewI64ListI64ServiceExistedArgs

func NewI64ListI64ServiceExistedArgs() *I64ListI64ServiceExistedArgs

func (*I64ListI64ServiceExistedArgs) GetEntry

func (p *I64ListI64ServiceExistedArgs) GetEntry() TEntry

func (*I64ListI64ServiceExistedArgs) GetKey

func (p *I64ListI64ServiceExistedArgs) GetKey() TKey

func (*I64ListI64ServiceExistedArgs) Read

func (*I64ListI64ServiceExistedArgs) ReadField1

func (p *I64ListI64ServiceExistedArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceExistedArgs) ReadField2

func (p *I64ListI64ServiceExistedArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServiceExistedArgs) String

func (*I64ListI64ServiceExistedArgs) Write

type I64ListI64ServiceExistedResult

type I64ListI64ServiceExistedResult struct {
	Success *bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceExistedResult

func NewI64ListI64ServiceExistedResult() *I64ListI64ServiceExistedResult

func (*I64ListI64ServiceExistedResult) GetSuccess

func (p *I64ListI64ServiceExistedResult) GetSuccess() bool

func (*I64ListI64ServiceExistedResult) IsSetSuccess

func (p *I64ListI64ServiceExistedResult) IsSetSuccess() bool

func (*I64ListI64ServiceExistedResult) Read

func (*I64ListI64ServiceExistedResult) ReadField0

func (*I64ListI64ServiceExistedResult) String

func (*I64ListI64ServiceExistedResult) Write

type I64ListI64ServiceGetAllArgs

type I64ListI64ServiceGetAllArgs struct {
	Key TKey `thrift:"key,1" db:"key" json:"key"`
}

Attributes:

  • Key

func NewI64ListI64ServiceGetAllArgs

func NewI64ListI64ServiceGetAllArgs() *I64ListI64ServiceGetAllArgs

func (*I64ListI64ServiceGetAllArgs) GetKey

func (p *I64ListI64ServiceGetAllArgs) GetKey() TKey

func (*I64ListI64ServiceGetAllArgs) Read

func (*I64ListI64ServiceGetAllArgs) ReadField1

func (p *I64ListI64ServiceGetAllArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceGetAllArgs) String

func (p *I64ListI64ServiceGetAllArgs) String() string

func (*I64ListI64ServiceGetAllArgs) Write

type I64ListI64ServiceGetAllResult

type I64ListI64ServiceGetAllResult struct {
	Success TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceGetAllResult

func NewI64ListI64ServiceGetAllResult() *I64ListI64ServiceGetAllResult

func (*I64ListI64ServiceGetAllResult) GetSuccess

func (p *I64ListI64ServiceGetAllResult) GetSuccess() TEntryList

func (*I64ListI64ServiceGetAllResult) IsSetSuccess

func (p *I64ListI64ServiceGetAllResult) IsSetSuccess() bool

func (*I64ListI64ServiceGetAllResult) Read

func (*I64ListI64ServiceGetAllResult) ReadField0

func (p *I64ListI64ServiceGetAllResult) ReadField0(iprot thrift.TProtocol) error

func (*I64ListI64ServiceGetAllResult) String

func (*I64ListI64ServiceGetAllResult) Write

type I64ListI64ServiceGetListAllArgs

type I64ListI64ServiceGetListAllArgs struct {
	Key TKey `thrift:"key,1" db:"key" json:"key"`
}

Attributes:

  • Key

func NewI64ListI64ServiceGetListAllArgs

func NewI64ListI64ServiceGetListAllArgs() *I64ListI64ServiceGetListAllArgs

func (*I64ListI64ServiceGetListAllArgs) GetKey

func (*I64ListI64ServiceGetListAllArgs) Read

func (*I64ListI64ServiceGetListAllArgs) ReadField1

func (*I64ListI64ServiceGetListAllArgs) String

func (*I64ListI64ServiceGetListAllArgs) Write

type I64ListI64ServiceGetListAllResult

type I64ListI64ServiceGetListAllResult struct {
	Success TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceGetListAllResult

func NewI64ListI64ServiceGetListAllResult() *I64ListI64ServiceGetListAllResult

func (*I64ListI64ServiceGetListAllResult) GetSuccess

func (*I64ListI64ServiceGetListAllResult) IsSetSuccess

func (p *I64ListI64ServiceGetListAllResult) IsSetSuccess() bool

func (*I64ListI64ServiceGetListAllResult) Read

func (*I64ListI64ServiceGetListAllResult) ReadField0

func (*I64ListI64ServiceGetListAllResult) String

func (*I64ListI64ServiceGetListAllResult) Write

type I64ListI64ServiceGetSliceArgs

type I64ListI64ServiceGetSliceArgs struct {
	Key    TKey  `thrift:"key,1" db:"key" json:"key"`
	Start  int32 `thrift:"start,2" db:"start" json:"start"`
	Length int32 `thrift:"length,3" db:"length" json:"length"`
}

Attributes:

  • Key
  • Start
  • Length

func NewI64ListI64ServiceGetSliceArgs

func NewI64ListI64ServiceGetSliceArgs() *I64ListI64ServiceGetSliceArgs

func (*I64ListI64ServiceGetSliceArgs) GetKey

func (p *I64ListI64ServiceGetSliceArgs) GetKey() TKey

func (*I64ListI64ServiceGetSliceArgs) GetLength

func (p *I64ListI64ServiceGetSliceArgs) GetLength() int32

func (*I64ListI64ServiceGetSliceArgs) GetStart

func (p *I64ListI64ServiceGetSliceArgs) GetStart() int32

func (*I64ListI64ServiceGetSliceArgs) Read

func (*I64ListI64ServiceGetSliceArgs) ReadField1

func (p *I64ListI64ServiceGetSliceArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceGetSliceArgs) ReadField2

func (p *I64ListI64ServiceGetSliceArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServiceGetSliceArgs) ReadField3

func (p *I64ListI64ServiceGetSliceArgs) ReadField3(iprot thrift.TProtocol) error

func (*I64ListI64ServiceGetSliceArgs) String

func (*I64ListI64ServiceGetSliceArgs) Write

type I64ListI64ServiceGetSliceFromEntryArgs

type I64ListI64ServiceGetSliceFromEntryArgs struct {
	Key        TKey   `thrift:"key,1" db:"key" json:"key"`
	EntryStart TEntry `thrift:"entryStart,2" db:"entryStart" json:"entryStart"`
	Length     int32  `thrift:"length,3" db:"length" json:"length"`
}

Attributes:

  • Key
  • EntryStart
  • Length

func NewI64ListI64ServiceGetSliceFromEntryArgs

func NewI64ListI64ServiceGetSliceFromEntryArgs() *I64ListI64ServiceGetSliceFromEntryArgs

func (*I64ListI64ServiceGetSliceFromEntryArgs) GetEntryStart

func (*I64ListI64ServiceGetSliceFromEntryArgs) GetKey

func (*I64ListI64ServiceGetSliceFromEntryArgs) GetLength

func (*I64ListI64ServiceGetSliceFromEntryArgs) Read

func (*I64ListI64ServiceGetSliceFromEntryArgs) ReadField1

func (*I64ListI64ServiceGetSliceFromEntryArgs) ReadField2

func (*I64ListI64ServiceGetSliceFromEntryArgs) ReadField3

func (*I64ListI64ServiceGetSliceFromEntryArgs) String

func (*I64ListI64ServiceGetSliceFromEntryArgs) Write

type I64ListI64ServiceGetSliceFromEntryResult

type I64ListI64ServiceGetSliceFromEntryResult struct {
	Success TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceGetSliceFromEntryResult

func NewI64ListI64ServiceGetSliceFromEntryResult() *I64ListI64ServiceGetSliceFromEntryResult

func (*I64ListI64ServiceGetSliceFromEntryResult) GetSuccess

func (*I64ListI64ServiceGetSliceFromEntryResult) IsSetSuccess

func (*I64ListI64ServiceGetSliceFromEntryResult) Read

func (*I64ListI64ServiceGetSliceFromEntryResult) ReadField0

func (*I64ListI64ServiceGetSliceFromEntryResult) String

func (*I64ListI64ServiceGetSliceFromEntryResult) Write

type I64ListI64ServiceGetSliceFromEntryReverseArgs

type I64ListI64ServiceGetSliceFromEntryReverseArgs struct {
	Key        TKey   `thrift:"key,1" db:"key" json:"key"`
	EntryStart TEntry `thrift:"entryStart,2" db:"entryStart" json:"entryStart"`
	Length     int32  `thrift:"length,3" db:"length" json:"length"`
}

Attributes:

  • Key
  • EntryStart
  • Length

func NewI64ListI64ServiceGetSliceFromEntryReverseArgs

func NewI64ListI64ServiceGetSliceFromEntryReverseArgs() *I64ListI64ServiceGetSliceFromEntryReverseArgs

func (*I64ListI64ServiceGetSliceFromEntryReverseArgs) GetEntryStart

func (*I64ListI64ServiceGetSliceFromEntryReverseArgs) GetKey

func (*I64ListI64ServiceGetSliceFromEntryReverseArgs) GetLength

func (*I64ListI64ServiceGetSliceFromEntryReverseArgs) Read

func (*I64ListI64ServiceGetSliceFromEntryReverseArgs) ReadField1

func (*I64ListI64ServiceGetSliceFromEntryReverseArgs) ReadField2

func (*I64ListI64ServiceGetSliceFromEntryReverseArgs) ReadField3

func (*I64ListI64ServiceGetSliceFromEntryReverseArgs) String

func (*I64ListI64ServiceGetSliceFromEntryReverseArgs) Write

type I64ListI64ServiceGetSliceFromEntryReverseResult

type I64ListI64ServiceGetSliceFromEntryReverseResult struct {
	Success TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceGetSliceFromEntryReverseResult

func NewI64ListI64ServiceGetSliceFromEntryReverseResult() *I64ListI64ServiceGetSliceFromEntryReverseResult

func (*I64ListI64ServiceGetSliceFromEntryReverseResult) GetSuccess

func (*I64ListI64ServiceGetSliceFromEntryReverseResult) IsSetSuccess

func (*I64ListI64ServiceGetSliceFromEntryReverseResult) Read

func (*I64ListI64ServiceGetSliceFromEntryReverseResult) ReadField0

func (*I64ListI64ServiceGetSliceFromEntryReverseResult) String

func (*I64ListI64ServiceGetSliceFromEntryReverseResult) Write

type I64ListI64ServiceGetSliceFromIdArgs

type I64ListI64ServiceGetSliceFromIdArgs struct {
	Key        TKey   `thrift:"key,1" db:"key" json:"key"`
	EntryStart TEntry `thrift:"entryStart,2" db:"entryStart" json:"entryStart"`
	Length     int32  `thrift:"length,3" db:"length" json:"length"`
}

Attributes:

  • Key
  • EntryStart
  • Length

func NewI64ListI64ServiceGetSliceFromIdArgs

func NewI64ListI64ServiceGetSliceFromIdArgs() *I64ListI64ServiceGetSliceFromIdArgs

func (*I64ListI64ServiceGetSliceFromIdArgs) GetEntryStart

func (p *I64ListI64ServiceGetSliceFromIdArgs) GetEntryStart() TEntry

func (*I64ListI64ServiceGetSliceFromIdArgs) GetKey

func (*I64ListI64ServiceGetSliceFromIdArgs) GetLength

func (*I64ListI64ServiceGetSliceFromIdArgs) Read

func (*I64ListI64ServiceGetSliceFromIdArgs) ReadField1

func (*I64ListI64ServiceGetSliceFromIdArgs) ReadField2

func (*I64ListI64ServiceGetSliceFromIdArgs) ReadField3

func (*I64ListI64ServiceGetSliceFromIdArgs) String

func (*I64ListI64ServiceGetSliceFromIdArgs) Write

type I64ListI64ServiceGetSliceFromIdResult

type I64ListI64ServiceGetSliceFromIdResult struct {
	Success TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceGetSliceFromIdResult

func NewI64ListI64ServiceGetSliceFromIdResult() *I64ListI64ServiceGetSliceFromIdResult

func (*I64ListI64ServiceGetSliceFromIdResult) GetSuccess

func (*I64ListI64ServiceGetSliceFromIdResult) IsSetSuccess

func (p *I64ListI64ServiceGetSliceFromIdResult) IsSetSuccess() bool

func (*I64ListI64ServiceGetSliceFromIdResult) Read

func (*I64ListI64ServiceGetSliceFromIdResult) ReadField0

func (*I64ListI64ServiceGetSliceFromIdResult) String

func (*I64ListI64ServiceGetSliceFromIdResult) Write

type I64ListI64ServiceGetSliceFromIdReverseArgs

type I64ListI64ServiceGetSliceFromIdReverseArgs struct {
	Key        TKey   `thrift:"key,1" db:"key" json:"key"`
	EntryStart TEntry `thrift:"entryStart,2" db:"entryStart" json:"entryStart"`
	Length     int32  `thrift:"length,3" db:"length" json:"length"`
}

Attributes:

  • Key
  • EntryStart
  • Length

func NewI64ListI64ServiceGetSliceFromIdReverseArgs

func NewI64ListI64ServiceGetSliceFromIdReverseArgs() *I64ListI64ServiceGetSliceFromIdReverseArgs

func (*I64ListI64ServiceGetSliceFromIdReverseArgs) GetEntryStart

func (*I64ListI64ServiceGetSliceFromIdReverseArgs) GetKey

func (*I64ListI64ServiceGetSliceFromIdReverseArgs) GetLength

func (*I64ListI64ServiceGetSliceFromIdReverseArgs) Read

func (*I64ListI64ServiceGetSliceFromIdReverseArgs) ReadField1

func (*I64ListI64ServiceGetSliceFromIdReverseArgs) ReadField2

func (*I64ListI64ServiceGetSliceFromIdReverseArgs) ReadField3

func (*I64ListI64ServiceGetSliceFromIdReverseArgs) String

func (*I64ListI64ServiceGetSliceFromIdReverseArgs) Write

type I64ListI64ServiceGetSliceFromIdReverseResult

type I64ListI64ServiceGetSliceFromIdReverseResult struct {
	Success TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceGetSliceFromIdReverseResult

func NewI64ListI64ServiceGetSliceFromIdReverseResult() *I64ListI64ServiceGetSliceFromIdReverseResult

func (*I64ListI64ServiceGetSliceFromIdReverseResult) GetSuccess

func (*I64ListI64ServiceGetSliceFromIdReverseResult) IsSetSuccess

func (*I64ListI64ServiceGetSliceFromIdReverseResult) Read

func (*I64ListI64ServiceGetSliceFromIdReverseResult) ReadField0

func (*I64ListI64ServiceGetSliceFromIdReverseResult) String

func (*I64ListI64ServiceGetSliceFromIdReverseResult) Write

type I64ListI64ServiceGetSliceResult

type I64ListI64ServiceGetSliceResult struct {
	Success TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceGetSliceResult

func NewI64ListI64ServiceGetSliceResult() *I64ListI64ServiceGetSliceResult

func (*I64ListI64ServiceGetSliceResult) GetSuccess

func (*I64ListI64ServiceGetSliceResult) IsSetSuccess

func (p *I64ListI64ServiceGetSliceResult) IsSetSuccess() bool

func (*I64ListI64ServiceGetSliceResult) Read

func (*I64ListI64ServiceGetSliceResult) ReadField0

func (*I64ListI64ServiceGetSliceResult) String

func (*I64ListI64ServiceGetSliceResult) Write

type I64ListI64ServiceGetSliceReverseArgs

type I64ListI64ServiceGetSliceReverseArgs struct {
	Key    TKey  `thrift:"key,1" db:"key" json:"key"`
	Start  int32 `thrift:"start,2" db:"start" json:"start"`
	Length int32 `thrift:"length,3" db:"length" json:"length"`
}

Attributes:

  • Key
  • Start
  • Length

func NewI64ListI64ServiceGetSliceReverseArgs

func NewI64ListI64ServiceGetSliceReverseArgs() *I64ListI64ServiceGetSliceReverseArgs

func (*I64ListI64ServiceGetSliceReverseArgs) GetKey

func (*I64ListI64ServiceGetSliceReverseArgs) GetLength

func (*I64ListI64ServiceGetSliceReverseArgs) GetStart

func (*I64ListI64ServiceGetSliceReverseArgs) Read

func (*I64ListI64ServiceGetSliceReverseArgs) ReadField1

func (*I64ListI64ServiceGetSliceReverseArgs) ReadField2

func (*I64ListI64ServiceGetSliceReverseArgs) ReadField3

func (*I64ListI64ServiceGetSliceReverseArgs) String

func (*I64ListI64ServiceGetSliceReverseArgs) Write

type I64ListI64ServiceGetSliceReverseResult

type I64ListI64ServiceGetSliceReverseResult struct {
	Success TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceGetSliceReverseResult

func NewI64ListI64ServiceGetSliceReverseResult() *I64ListI64ServiceGetSliceReverseResult

func (*I64ListI64ServiceGetSliceReverseResult) GetSuccess

func (*I64ListI64ServiceGetSliceReverseResult) IsSetSuccess

func (p *I64ListI64ServiceGetSliceReverseResult) IsSetSuccess() bool

func (*I64ListI64ServiceGetSliceReverseResult) Read

func (*I64ListI64ServiceGetSliceReverseResult) ReadField0

func (*I64ListI64ServiceGetSliceReverseResult) String

func (*I64ListI64ServiceGetSliceReverseResult) Write

type I64ListI64ServiceInsertArgs

type I64ListI64ServiceInsertArgs struct {
	Key   TKey   `thrift:"key,1" db:"key" json:"key"`
	Entry TEntry `thrift:"entry,2" db:"entry" json:"entry"`
}

Attributes:

  • Key
  • Entry

func NewI64ListI64ServiceInsertArgs

func NewI64ListI64ServiceInsertArgs() *I64ListI64ServiceInsertArgs

func (*I64ListI64ServiceInsertArgs) GetEntry

func (p *I64ListI64ServiceInsertArgs) GetEntry() TEntry

func (*I64ListI64ServiceInsertArgs) GetKey

func (p *I64ListI64ServiceInsertArgs) GetKey() TKey

func (*I64ListI64ServiceInsertArgs) Read

func (*I64ListI64ServiceInsertArgs) ReadField1

func (p *I64ListI64ServiceInsertArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceInsertArgs) ReadField2

func (p *I64ListI64ServiceInsertArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServiceInsertArgs) String

func (p *I64ListI64ServiceInsertArgs) String() string

func (*I64ListI64ServiceInsertArgs) Write

type I64ListI64ServiceInsertAtArgs

type I64ListI64ServiceInsertAtArgs struct {
	Key   TKey   `thrift:"key,1" db:"key" json:"key"`
	Entry TEntry `thrift:"entry,2" db:"entry" json:"entry"`
	Index int32  `thrift:"index,3" db:"index" json:"index"`
}

Attributes:

  • Key
  • Entry
  • Index

func NewI64ListI64ServiceInsertAtArgs

func NewI64ListI64ServiceInsertAtArgs() *I64ListI64ServiceInsertAtArgs

func (*I64ListI64ServiceInsertAtArgs) GetEntry

func (p *I64ListI64ServiceInsertAtArgs) GetEntry() TEntry

func (*I64ListI64ServiceInsertAtArgs) GetIndex

func (p *I64ListI64ServiceInsertAtArgs) GetIndex() int32

func (*I64ListI64ServiceInsertAtArgs) GetKey

func (p *I64ListI64ServiceInsertAtArgs) GetKey() TKey

func (*I64ListI64ServiceInsertAtArgs) Read

func (*I64ListI64ServiceInsertAtArgs) ReadField1

func (p *I64ListI64ServiceInsertAtArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceInsertAtArgs) ReadField2

func (p *I64ListI64ServiceInsertAtArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServiceInsertAtArgs) ReadField3

func (p *I64ListI64ServiceInsertAtArgs) ReadField3(iprot thrift.TProtocol) error

func (*I64ListI64ServiceInsertAtArgs) String

func (*I64ListI64ServiceInsertAtArgs) Write

type I64ListI64ServiceInsertAtResult

type I64ListI64ServiceInsertAtResult struct {
	Success *bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceInsertAtResult

func NewI64ListI64ServiceInsertAtResult() *I64ListI64ServiceInsertAtResult

func (*I64ListI64ServiceInsertAtResult) GetSuccess

func (p *I64ListI64ServiceInsertAtResult) GetSuccess() bool

func (*I64ListI64ServiceInsertAtResult) IsSetSuccess

func (p *I64ListI64ServiceInsertAtResult) IsSetSuccess() bool

func (*I64ListI64ServiceInsertAtResult) Read

func (*I64ListI64ServiceInsertAtResult) ReadField0

func (*I64ListI64ServiceInsertAtResult) String

func (*I64ListI64ServiceInsertAtResult) Write

type I64ListI64ServiceInsertResult

type I64ListI64ServiceInsertResult struct {
	Success *bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceInsertResult

func NewI64ListI64ServiceInsertResult() *I64ListI64ServiceInsertResult

func (*I64ListI64ServiceInsertResult) GetSuccess

func (p *I64ListI64ServiceInsertResult) GetSuccess() bool

func (*I64ListI64ServiceInsertResult) IsSetSuccess

func (p *I64ListI64ServiceInsertResult) IsSetSuccess() bool

func (*I64ListI64ServiceInsertResult) Read

func (*I64ListI64ServiceInsertResult) ReadField0

func (p *I64ListI64ServiceInsertResult) ReadField0(iprot thrift.TProtocol) error

func (*I64ListI64ServiceInsertResult) String

func (*I64ListI64ServiceInsertResult) Write

type I64ListI64ServiceMultiCountArgs

type I64ListI64ServiceMultiCountArgs struct {
	KeyList TKeyList `thrift:"keyList,1" db:"keyList" json:"keyList"`
}

Attributes:

  • KeyList

func NewI64ListI64ServiceMultiCountArgs

func NewI64ListI64ServiceMultiCountArgs() *I64ListI64ServiceMultiCountArgs

func (*I64ListI64ServiceMultiCountArgs) GetKeyList

func (p *I64ListI64ServiceMultiCountArgs) GetKeyList() TKeyList

func (*I64ListI64ServiceMultiCountArgs) Read

func (*I64ListI64ServiceMultiCountArgs) ReadField1

func (*I64ListI64ServiceMultiCountArgs) String

func (*I64ListI64ServiceMultiCountArgs) Write

type I64ListI64ServiceMultiCountResult

type I64ListI64ServiceMultiCountResult struct {
	Success map[TKey]int32 `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceMultiCountResult

func NewI64ListI64ServiceMultiCountResult() *I64ListI64ServiceMultiCountResult

func (*I64ListI64ServiceMultiCountResult) GetSuccess

func (p *I64ListI64ServiceMultiCountResult) GetSuccess() map[TKey]int32

func (*I64ListI64ServiceMultiCountResult) IsSetSuccess

func (p *I64ListI64ServiceMultiCountResult) IsSetSuccess() bool

func (*I64ListI64ServiceMultiCountResult) Read

func (*I64ListI64ServiceMultiCountResult) ReadField0

func (*I64ListI64ServiceMultiCountResult) String

func (*I64ListI64ServiceMultiCountResult) Write

type I64ListI64ServiceMultiExistedArgs

type I64ListI64ServiceMultiExistedArgs struct {
	KeyList TKeyList `thrift:"keyList,1" db:"keyList" json:"keyList"`
	Entry   TEntry   `thrift:"entry,2" db:"entry" json:"entry"`
}

Attributes:

  • KeyList
  • Entry

func NewI64ListI64ServiceMultiExistedArgs

func NewI64ListI64ServiceMultiExistedArgs() *I64ListI64ServiceMultiExistedArgs

func (*I64ListI64ServiceMultiExistedArgs) GetEntry

func (*I64ListI64ServiceMultiExistedArgs) GetKeyList

func (*I64ListI64ServiceMultiExistedArgs) Read

func (*I64ListI64ServiceMultiExistedArgs) ReadField1

func (*I64ListI64ServiceMultiExistedArgs) ReadField2

func (*I64ListI64ServiceMultiExistedArgs) String

func (*I64ListI64ServiceMultiExistedArgs) Write

type I64ListI64ServiceMultiExistedResult

type I64ListI64ServiceMultiExistedResult struct {
	Success map[TKey]bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceMultiExistedResult

func NewI64ListI64ServiceMultiExistedResult() *I64ListI64ServiceMultiExistedResult

func (*I64ListI64ServiceMultiExistedResult) GetSuccess

func (p *I64ListI64ServiceMultiExistedResult) GetSuccess() map[TKey]bool

func (*I64ListI64ServiceMultiExistedResult) IsSetSuccess

func (p *I64ListI64ServiceMultiExistedResult) IsSetSuccess() bool

func (*I64ListI64ServiceMultiExistedResult) Read

func (*I64ListI64ServiceMultiExistedResult) ReadField0

func (*I64ListI64ServiceMultiExistedResult) String

func (*I64ListI64ServiceMultiExistedResult) Write

type I64ListI64ServiceMultiGetListAllArgs

type I64ListI64ServiceMultiGetListAllArgs struct {
	KeyList TKeyList `thrift:"keyList,1" db:"keyList" json:"keyList"`
}

Attributes:

  • KeyList

func NewI64ListI64ServiceMultiGetListAllArgs

func NewI64ListI64ServiceMultiGetListAllArgs() *I64ListI64ServiceMultiGetListAllArgs

func (*I64ListI64ServiceMultiGetListAllArgs) GetKeyList

func (*I64ListI64ServiceMultiGetListAllArgs) Read

func (*I64ListI64ServiceMultiGetListAllArgs) ReadField1

func (*I64ListI64ServiceMultiGetListAllArgs) String

func (*I64ListI64ServiceMultiGetListAllArgs) Write

type I64ListI64ServiceMultiGetListAllResult

type I64ListI64ServiceMultiGetListAllResult struct {
	Success map[TKey]TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceMultiGetListAllResult

func NewI64ListI64ServiceMultiGetListAllResult() *I64ListI64ServiceMultiGetListAllResult

func (*I64ListI64ServiceMultiGetListAllResult) GetSuccess

func (*I64ListI64ServiceMultiGetListAllResult) IsSetSuccess

func (p *I64ListI64ServiceMultiGetListAllResult) IsSetSuccess() bool

func (*I64ListI64ServiceMultiGetListAllResult) Read

func (*I64ListI64ServiceMultiGetListAllResult) ReadField0

func (*I64ListI64ServiceMultiGetListAllResult) String

func (*I64ListI64ServiceMultiGetListAllResult) Write

type I64ListI64ServiceMultiGetSliceArgs

type I64ListI64ServiceMultiGetSliceArgs struct {
	KeyList TKeyList `thrift:"keyList,1" db:"keyList" json:"keyList"`
	Start   int32    `thrift:"start,2" db:"start" json:"start"`
	Length  int32    `thrift:"length,3" db:"length" json:"length"`
}

Attributes:

  • KeyList
  • Start
  • Length

func NewI64ListI64ServiceMultiGetSliceArgs

func NewI64ListI64ServiceMultiGetSliceArgs() *I64ListI64ServiceMultiGetSliceArgs

func (*I64ListI64ServiceMultiGetSliceArgs) GetKeyList

func (*I64ListI64ServiceMultiGetSliceArgs) GetLength

func (*I64ListI64ServiceMultiGetSliceArgs) GetStart

func (*I64ListI64ServiceMultiGetSliceArgs) Read

func (*I64ListI64ServiceMultiGetSliceArgs) ReadField1

func (*I64ListI64ServiceMultiGetSliceArgs) ReadField2

func (*I64ListI64ServiceMultiGetSliceArgs) ReadField3

func (*I64ListI64ServiceMultiGetSliceArgs) String

func (*I64ListI64ServiceMultiGetSliceArgs) Write

type I64ListI64ServiceMultiGetSliceResult

type I64ListI64ServiceMultiGetSliceResult struct {
	Success map[TKey]TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceMultiGetSliceResult

func NewI64ListI64ServiceMultiGetSliceResult() *I64ListI64ServiceMultiGetSliceResult

func (*I64ListI64ServiceMultiGetSliceResult) GetSuccess

func (*I64ListI64ServiceMultiGetSliceResult) IsSetSuccess

func (p *I64ListI64ServiceMultiGetSliceResult) IsSetSuccess() bool

func (*I64ListI64ServiceMultiGetSliceResult) Read

func (*I64ListI64ServiceMultiGetSliceResult) ReadField0

func (*I64ListI64ServiceMultiGetSliceResult) String

func (*I64ListI64ServiceMultiGetSliceResult) Write

type I64ListI64ServiceMultiGetSliceReverseArgs

type I64ListI64ServiceMultiGetSliceReverseArgs struct {
	KeyList TKeyList `thrift:"keyList,1" db:"keyList" json:"keyList"`
	Start   int32    `thrift:"start,2" db:"start" json:"start"`
	Length  int32    `thrift:"length,3" db:"length" json:"length"`
}

Attributes:

  • KeyList
  • Start
  • Length

func NewI64ListI64ServiceMultiGetSliceReverseArgs

func NewI64ListI64ServiceMultiGetSliceReverseArgs() *I64ListI64ServiceMultiGetSliceReverseArgs

func (*I64ListI64ServiceMultiGetSliceReverseArgs) GetKeyList

func (*I64ListI64ServiceMultiGetSliceReverseArgs) GetLength

func (*I64ListI64ServiceMultiGetSliceReverseArgs) GetStart

func (*I64ListI64ServiceMultiGetSliceReverseArgs) Read

func (*I64ListI64ServiceMultiGetSliceReverseArgs) ReadField1

func (*I64ListI64ServiceMultiGetSliceReverseArgs) ReadField2

func (*I64ListI64ServiceMultiGetSliceReverseArgs) ReadField3

func (*I64ListI64ServiceMultiGetSliceReverseArgs) String

func (*I64ListI64ServiceMultiGetSliceReverseArgs) Write

type I64ListI64ServiceMultiGetSliceReverseResult

type I64ListI64ServiceMultiGetSliceReverseResult struct {
	Success map[TKey]TEntryList `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceMultiGetSliceReverseResult

func NewI64ListI64ServiceMultiGetSliceReverseResult() *I64ListI64ServiceMultiGetSliceReverseResult

func (*I64ListI64ServiceMultiGetSliceReverseResult) GetSuccess

func (*I64ListI64ServiceMultiGetSliceReverseResult) IsSetSuccess

func (*I64ListI64ServiceMultiGetSliceReverseResult) Read

func (*I64ListI64ServiceMultiGetSliceReverseResult) ReadField0

func (*I64ListI64ServiceMultiGetSliceReverseResult) String

func (*I64ListI64ServiceMultiGetSliceReverseResult) Write

type I64ListI64ServiceMultiPutArgs

type I64ListI64ServiceMultiPutArgs struct {
	KeyList TKeyList `thrift:"keyList,1" db:"keyList" json:"keyList"`
	Entry   TEntry   `thrift:"entry,2" db:"entry" json:"entry"`
}

Attributes:

  • KeyList
  • Entry

func NewI64ListI64ServiceMultiPutArgs

func NewI64ListI64ServiceMultiPutArgs() *I64ListI64ServiceMultiPutArgs

func (*I64ListI64ServiceMultiPutArgs) GetEntry

func (p *I64ListI64ServiceMultiPutArgs) GetEntry() TEntry

func (*I64ListI64ServiceMultiPutArgs) GetKeyList

func (p *I64ListI64ServiceMultiPutArgs) GetKeyList() TKeyList

func (*I64ListI64ServiceMultiPutArgs) Read

func (*I64ListI64ServiceMultiPutArgs) ReadField1

func (p *I64ListI64ServiceMultiPutArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceMultiPutArgs) ReadField2

func (p *I64ListI64ServiceMultiPutArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServiceMultiPutArgs) String

func (*I64ListI64ServiceMultiPutArgs) Write

type I64ListI64ServiceMultiPutResult

type I64ListI64ServiceMultiPutResult struct {
	Success map[TKey]bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceMultiPutResult

func NewI64ListI64ServiceMultiPutResult() *I64ListI64ServiceMultiPutResult

func (*I64ListI64ServiceMultiPutResult) GetSuccess

func (p *I64ListI64ServiceMultiPutResult) GetSuccess() map[TKey]bool

func (*I64ListI64ServiceMultiPutResult) IsSetSuccess

func (p *I64ListI64ServiceMultiPutResult) IsSetSuccess() bool

func (*I64ListI64ServiceMultiPutResult) Read

func (*I64ListI64ServiceMultiPutResult) ReadField0

func (*I64ListI64ServiceMultiPutResult) String

func (*I64ListI64ServiceMultiPutResult) Write

type I64ListI64ServiceProcessor

type I64ListI64ServiceProcessor struct {
	// contains filtered or unexported fields
}

func NewI64ListI64ServiceProcessor

func NewI64ListI64ServiceProcessor(handler I64ListI64Service) *I64ListI64ServiceProcessor

func (*I64ListI64ServiceProcessor) AddToProcessorMap

func (p *I64ListI64ServiceProcessor) AddToProcessorMap(key string, processor thrift.TProcessorFunction)

func (*I64ListI64ServiceProcessor) GetProcessorFunction

func (p *I64ListI64ServiceProcessor) GetProcessorFunction(key string) (processor thrift.TProcessorFunction, ok bool)

func (*I64ListI64ServiceProcessor) Process

func (p *I64ListI64ServiceProcessor) Process(ctx context.Context, iprot, oprot thrift.TProtocol) (success bool, err thrift.TException)

func (*I64ListI64ServiceProcessor) ProcessorMap

type I64ListI64ServicePutArgs

type I64ListI64ServicePutArgs struct {
	Key   TKey   `thrift:"key,1" db:"key" json:"key"`
	Entry TEntry `thrift:"entry,2" db:"entry" json:"entry"`
}

Attributes:

  • Key
  • Entry

func NewI64ListI64ServicePutArgs

func NewI64ListI64ServicePutArgs() *I64ListI64ServicePutArgs

func (*I64ListI64ServicePutArgs) GetEntry

func (p *I64ListI64ServicePutArgs) GetEntry() TEntry

func (*I64ListI64ServicePutArgs) GetKey

func (p *I64ListI64ServicePutArgs) GetKey() TKey

func (*I64ListI64ServicePutArgs) Read

func (*I64ListI64ServicePutArgs) ReadField1

func (p *I64ListI64ServicePutArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServicePutArgs) ReadField2

func (p *I64ListI64ServicePutArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServicePutArgs) String

func (p *I64ListI64ServicePutArgs) String() string

func (*I64ListI64ServicePutArgs) Write

type I64ListI64ServicePutListArgs

type I64ListI64ServicePutListArgs struct {
	Key       TKey       `thrift:"key,1" db:"key" json:"key"`
	EntryList TEntryList `thrift:"entryList,2" db:"entryList" json:"entryList"`
}

Attributes:

  • Key
  • EntryList

func NewI64ListI64ServicePutListArgs

func NewI64ListI64ServicePutListArgs() *I64ListI64ServicePutListArgs

func (*I64ListI64ServicePutListArgs) GetEntryList

func (p *I64ListI64ServicePutListArgs) GetEntryList() TEntryList

func (*I64ListI64ServicePutListArgs) GetKey

func (p *I64ListI64ServicePutListArgs) GetKey() TKey

func (*I64ListI64ServicePutListArgs) Read

func (*I64ListI64ServicePutListArgs) ReadField1

func (p *I64ListI64ServicePutListArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServicePutListArgs) ReadField2

func (p *I64ListI64ServicePutListArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServicePutListArgs) String

func (*I64ListI64ServicePutListArgs) Write

type I64ListI64ServicePutListResult

type I64ListI64ServicePutListResult struct {
	Success *bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServicePutListResult

func NewI64ListI64ServicePutListResult() *I64ListI64ServicePutListResult

func (*I64ListI64ServicePutListResult) GetSuccess

func (p *I64ListI64ServicePutListResult) GetSuccess() bool

func (*I64ListI64ServicePutListResult) IsSetSuccess

func (p *I64ListI64ServicePutListResult) IsSetSuccess() bool

func (*I64ListI64ServicePutListResult) Read

func (*I64ListI64ServicePutListResult) ReadField0

func (*I64ListI64ServicePutListResult) String

func (*I64ListI64ServicePutListResult) Write

type I64ListI64ServicePutMultiKeyOwArgs

type I64ListI64ServicePutMultiKeyOwArgs struct {
	UidList TKeyList `thrift:"uidList,1" db:"uidList" json:"uidList"`
	Entry   TEntry   `thrift:"entry,2" db:"entry" json:"entry"`
}

Attributes:

  • UidList
  • Entry

func NewI64ListI64ServicePutMultiKeyOwArgs

func NewI64ListI64ServicePutMultiKeyOwArgs() *I64ListI64ServicePutMultiKeyOwArgs

func (*I64ListI64ServicePutMultiKeyOwArgs) GetEntry

func (*I64ListI64ServicePutMultiKeyOwArgs) GetUidList

func (*I64ListI64ServicePutMultiKeyOwArgs) Read

func (*I64ListI64ServicePutMultiKeyOwArgs) ReadField1

func (*I64ListI64ServicePutMultiKeyOwArgs) ReadField2

func (*I64ListI64ServicePutMultiKeyOwArgs) String

func (*I64ListI64ServicePutMultiKeyOwArgs) Write

type I64ListI64ServicePutOwArgs

type I64ListI64ServicePutOwArgs struct {
	Key   TKey   `thrift:"key,1" db:"key" json:"key"`
	Entry TEntry `thrift:"entry,2" db:"entry" json:"entry"`
}

Attributes:

  • Key
  • Entry

func NewI64ListI64ServicePutOwArgs

func NewI64ListI64ServicePutOwArgs() *I64ListI64ServicePutOwArgs

func (*I64ListI64ServicePutOwArgs) GetEntry

func (p *I64ListI64ServicePutOwArgs) GetEntry() TEntry

func (*I64ListI64ServicePutOwArgs) GetKey

func (p *I64ListI64ServicePutOwArgs) GetKey() TKey

func (*I64ListI64ServicePutOwArgs) Read

func (*I64ListI64ServicePutOwArgs) ReadField1

func (p *I64ListI64ServicePutOwArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServicePutOwArgs) ReadField2

func (p *I64ListI64ServicePutOwArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServicePutOwArgs) String

func (p *I64ListI64ServicePutOwArgs) String() string

func (*I64ListI64ServicePutOwArgs) Write

type I64ListI64ServicePutResult

type I64ListI64ServicePutResult struct {
	Success *bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServicePutResult

func NewI64ListI64ServicePutResult() *I64ListI64ServicePutResult

func (*I64ListI64ServicePutResult) GetSuccess

func (p *I64ListI64ServicePutResult) GetSuccess() bool

func (*I64ListI64ServicePutResult) IsSetSuccess

func (p *I64ListI64ServicePutResult) IsSetSuccess() bool

func (*I64ListI64ServicePutResult) Read

func (*I64ListI64ServicePutResult) ReadField0

func (p *I64ListI64ServicePutResult) ReadField0(iprot thrift.TProtocol) error

func (*I64ListI64ServicePutResult) String

func (p *I64ListI64ServicePutResult) String() string

func (*I64ListI64ServicePutResult) Write

type I64ListI64ServicePutValueArgs

type I64ListI64ServicePutValueArgs struct {
	Key   TKey    `thrift:"key,1" db:"key" json:"key"`
	Value *TValue `thrift:"value,2" db:"value" json:"value"`
}

Attributes:

  • Key
  • Value

func NewI64ListI64ServicePutValueArgs

func NewI64ListI64ServicePutValueArgs() *I64ListI64ServicePutValueArgs

func (*I64ListI64ServicePutValueArgs) GetKey

func (p *I64ListI64ServicePutValueArgs) GetKey() TKey

func (*I64ListI64ServicePutValueArgs) GetValue

func (p *I64ListI64ServicePutValueArgs) GetValue() *TValue

func (*I64ListI64ServicePutValueArgs) IsSetValue

func (p *I64ListI64ServicePutValueArgs) IsSetValue() bool

func (*I64ListI64ServicePutValueArgs) Read

func (*I64ListI64ServicePutValueArgs) ReadField1

func (p *I64ListI64ServicePutValueArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServicePutValueArgs) ReadField2

func (p *I64ListI64ServicePutValueArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServicePutValueArgs) String

func (*I64ListI64ServicePutValueArgs) Write

type I64ListI64ServicePutValueResult

type I64ListI64ServicePutValueResult struct {
	Success *bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServicePutValueResult

func NewI64ListI64ServicePutValueResult() *I64ListI64ServicePutValueResult

func (*I64ListI64ServicePutValueResult) GetSuccess

func (p *I64ListI64ServicePutValueResult) GetSuccess() bool

func (*I64ListI64ServicePutValueResult) IsSetSuccess

func (p *I64ListI64ServicePutValueResult) IsSetSuccess() bool

func (*I64ListI64ServicePutValueResult) Read

func (*I64ListI64ServicePutValueResult) ReadField0

func (*I64ListI64ServicePutValueResult) String

func (*I64ListI64ServicePutValueResult) Write

type I64ListI64ServiceRemoveArgs

type I64ListI64ServiceRemoveArgs struct {
	Key   TKey   `thrift:"key,1" db:"key" json:"key"`
	Entry TEntry `thrift:"entry,2" db:"entry" json:"entry"`
}

Attributes:

  • Key
  • Entry

func NewI64ListI64ServiceRemoveArgs

func NewI64ListI64ServiceRemoveArgs() *I64ListI64ServiceRemoveArgs

func (*I64ListI64ServiceRemoveArgs) GetEntry

func (p *I64ListI64ServiceRemoveArgs) GetEntry() TEntry

func (*I64ListI64ServiceRemoveArgs) GetKey

func (p *I64ListI64ServiceRemoveArgs) GetKey() TKey

func (*I64ListI64ServiceRemoveArgs) Read

func (*I64ListI64ServiceRemoveArgs) ReadField1

func (p *I64ListI64ServiceRemoveArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceRemoveArgs) ReadField2

func (p *I64ListI64ServiceRemoveArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServiceRemoveArgs) String

func (p *I64ListI64ServiceRemoveArgs) String() string

func (*I64ListI64ServiceRemoveArgs) Write

type I64ListI64ServiceRemoveAtArgs

type I64ListI64ServiceRemoveAtArgs struct {
	Key   TKey  `thrift:"key,1" db:"key" json:"key"`
	Index int32 `thrift:"index,2" db:"index" json:"index"`
}

Attributes:

  • Key
  • Index

func NewI64ListI64ServiceRemoveAtArgs

func NewI64ListI64ServiceRemoveAtArgs() *I64ListI64ServiceRemoveAtArgs

func (*I64ListI64ServiceRemoveAtArgs) GetIndex

func (p *I64ListI64ServiceRemoveAtArgs) GetIndex() int32

func (*I64ListI64ServiceRemoveAtArgs) GetKey

func (p *I64ListI64ServiceRemoveAtArgs) GetKey() TKey

func (*I64ListI64ServiceRemoveAtArgs) Read

func (*I64ListI64ServiceRemoveAtArgs) ReadField1

func (p *I64ListI64ServiceRemoveAtArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceRemoveAtArgs) ReadField2

func (p *I64ListI64ServiceRemoveAtArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServiceRemoveAtArgs) String

func (*I64ListI64ServiceRemoveAtArgs) Write

type I64ListI64ServiceRemoveAtResult

type I64ListI64ServiceRemoveAtResult struct {
	Success *bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceRemoveAtResult

func NewI64ListI64ServiceRemoveAtResult() *I64ListI64ServiceRemoveAtResult

func (*I64ListI64ServiceRemoveAtResult) GetSuccess

func (p *I64ListI64ServiceRemoveAtResult) GetSuccess() bool

func (*I64ListI64ServiceRemoveAtResult) IsSetSuccess

func (p *I64ListI64ServiceRemoveAtResult) IsSetSuccess() bool

func (*I64ListI64ServiceRemoveAtResult) Read

func (*I64ListI64ServiceRemoveAtResult) ReadField0

func (*I64ListI64ServiceRemoveAtResult) String

func (*I64ListI64ServiceRemoveAtResult) Write

type I64ListI64ServiceRemoveListArgs

type I64ListI64ServiceRemoveListArgs struct {
	Key       TKey       `thrift:"key,1" db:"key" json:"key"`
	EntryList TEntryList `thrift:"entryList,2" db:"entryList" json:"entryList"`
}

Attributes:

  • Key
  • EntryList

func NewI64ListI64ServiceRemoveListArgs

func NewI64ListI64ServiceRemoveListArgs() *I64ListI64ServiceRemoveListArgs

func (*I64ListI64ServiceRemoveListArgs) GetEntryList

func (p *I64ListI64ServiceRemoveListArgs) GetEntryList() TEntryList

func (*I64ListI64ServiceRemoveListArgs) GetKey

func (*I64ListI64ServiceRemoveListArgs) Read

func (*I64ListI64ServiceRemoveListArgs) ReadField1

func (*I64ListI64ServiceRemoveListArgs) ReadField2

func (*I64ListI64ServiceRemoveListArgs) String

func (*I64ListI64ServiceRemoveListArgs) Write

type I64ListI64ServiceRemoveListResult

type I64ListI64ServiceRemoveListResult struct {
	Success *bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceRemoveListResult

func NewI64ListI64ServiceRemoveListResult() *I64ListI64ServiceRemoveListResult

func (*I64ListI64ServiceRemoveListResult) GetSuccess

func (p *I64ListI64ServiceRemoveListResult) GetSuccess() bool

func (*I64ListI64ServiceRemoveListResult) IsSetSuccess

func (p *I64ListI64ServiceRemoveListResult) IsSetSuccess() bool

func (*I64ListI64ServiceRemoveListResult) Read

func (*I64ListI64ServiceRemoveListResult) ReadField0

func (*I64ListI64ServiceRemoveListResult) String

func (*I64ListI64ServiceRemoveListResult) Write

type I64ListI64ServiceRemoveOwArgs

type I64ListI64ServiceRemoveOwArgs struct {
	Key   TKey   `thrift:"key,1" db:"key" json:"key"`
	Entry TEntry `thrift:"entry,2" db:"entry" json:"entry"`
}

Attributes:

  • Key
  • Entry

func NewI64ListI64ServiceRemoveOwArgs

func NewI64ListI64ServiceRemoveOwArgs() *I64ListI64ServiceRemoveOwArgs

func (*I64ListI64ServiceRemoveOwArgs) GetEntry

func (p *I64ListI64ServiceRemoveOwArgs) GetEntry() TEntry

func (*I64ListI64ServiceRemoveOwArgs) GetKey

func (p *I64ListI64ServiceRemoveOwArgs) GetKey() TKey

func (*I64ListI64ServiceRemoveOwArgs) Read

func (*I64ListI64ServiceRemoveOwArgs) ReadField1

func (p *I64ListI64ServiceRemoveOwArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceRemoveOwArgs) ReadField2

func (p *I64ListI64ServiceRemoveOwArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServiceRemoveOwArgs) String

func (*I64ListI64ServiceRemoveOwArgs) Write

type I64ListI64ServiceRemoveResult

type I64ListI64ServiceRemoveResult struct {
	Success *bool `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceRemoveResult

func NewI64ListI64ServiceRemoveResult() *I64ListI64ServiceRemoveResult

func (*I64ListI64ServiceRemoveResult) GetSuccess

func (p *I64ListI64ServiceRemoveResult) GetSuccess() bool

func (*I64ListI64ServiceRemoveResult) IsSetSuccess

func (p *I64ListI64ServiceRemoveResult) IsSetSuccess() bool

func (*I64ListI64ServiceRemoveResult) Read

func (*I64ListI64ServiceRemoveResult) ReadField0

func (p *I64ListI64ServiceRemoveResult) ReadField0(iprot thrift.TProtocol) error

func (*I64ListI64ServiceRemoveResult) String

func (*I64ListI64ServiceRemoveResult) Write

type I64ListI64ServiceSplitArgs

type I64ListI64ServiceSplitArgs struct {
	OldKey     TKey  `thrift:"oldKey,1" db:"oldKey" json:"oldKey"`
	NewKey_    TKey  `thrift:"newKey,2" db:"newKey" json:"newKey"`
	OrigLength int32 `thrift:"origLength,3" db:"origLength" json:"origLength"`
}

Attributes:

  • OldKey
  • NewKey_
  • OrigLength

func NewI64ListI64ServiceSplitArgs

func NewI64ListI64ServiceSplitArgs() *I64ListI64ServiceSplitArgs

func (*I64ListI64ServiceSplitArgs) GetNewKey_

func (p *I64ListI64ServiceSplitArgs) GetNewKey_() TKey

func (*I64ListI64ServiceSplitArgs) GetOldKey

func (p *I64ListI64ServiceSplitArgs) GetOldKey() TKey

func (*I64ListI64ServiceSplitArgs) GetOrigLength

func (p *I64ListI64ServiceSplitArgs) GetOrigLength() int32

func (*I64ListI64ServiceSplitArgs) Read

func (*I64ListI64ServiceSplitArgs) ReadField1

func (p *I64ListI64ServiceSplitArgs) ReadField1(iprot thrift.TProtocol) error

func (*I64ListI64ServiceSplitArgs) ReadField2

func (p *I64ListI64ServiceSplitArgs) ReadField2(iprot thrift.TProtocol) error

func (*I64ListI64ServiceSplitArgs) ReadField3

func (p *I64ListI64ServiceSplitArgs) ReadField3(iprot thrift.TProtocol) error

func (*I64ListI64ServiceSplitArgs) String

func (p *I64ListI64ServiceSplitArgs) String() string

func (*I64ListI64ServiceSplitArgs) Write

type I64ListI64ServiceSplitResult

type I64ListI64ServiceSplitResult struct {
	Success *TEntry `thrift:"success,0" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewI64ListI64ServiceSplitResult

func NewI64ListI64ServiceSplitResult() *I64ListI64ServiceSplitResult

func (*I64ListI64ServiceSplitResult) GetSuccess

func (p *I64ListI64ServiceSplitResult) GetSuccess() TEntry

func (*I64ListI64ServiceSplitResult) IsSetSuccess

func (p *I64ListI64ServiceSplitResult) IsSetSuccess() bool

func (*I64ListI64ServiceSplitResult) Read

func (*I64ListI64ServiceSplitResult) ReadField0

func (p *I64ListI64ServiceSplitResult) ReadField0(iprot thrift.TProtocol) error

func (*I64ListI64ServiceSplitResult) String

func (*I64ListI64ServiceSplitResult) Write

type LimitPolicy

type LimitPolicy int64
const (
	LimitPolicy_REJECT      LimitPolicy = 0
	LimitPolicy_EVICT_FRONT LimitPolicy = 1
	LimitPolicy_EVICT_BACK  LimitPolicy = 2
)

func LimitPolicyFromString

func LimitPolicyFromString(s string) (LimitPolicy, error)

func LimitPolicyPtr

func LimitPolicyPtr(v LimitPolicy) *LimitPolicy

func (LimitPolicy) MarshalText

func (p LimitPolicy) MarshalText() ([]byte, error)

func (*LimitPolicy) Scan

func (p *LimitPolicy) Scan(value interface{}) error

func (LimitPolicy) String

func (p LimitPolicy) String() string

func (*LimitPolicy) UnmarshalText

func (p *LimitPolicy) UnmarshalText(text []byte) error

func (*LimitPolicy) Value

func (p *LimitPolicy) Value() (driver.Value, error)

type TEntry

type TEntry int64
var I64ListI64ServiceSplitResult_Success_DEFAULT TEntry

func TEntryPtr

func TEntryPtr(v TEntry) *TEntry

type TEntryList

type TEntryList []TEntry
var I64ListI64ServiceGetAllResult_Success_DEFAULT TEntryList
var I64ListI64ServiceGetListAllResult_Success_DEFAULT TEntryList
var I64ListI64ServiceGetSliceFromEntryResult_Success_DEFAULT TEntryList
var I64ListI64ServiceGetSliceFromEntryReverseResult_Success_DEFAULT TEntryList
var I64ListI64ServiceGetSliceFromIdResult_Success_DEFAULT TEntryList
var I64ListI64ServiceGetSliceFromIdReverseResult_Success_DEFAULT TEntryList
var I64ListI64ServiceGetSliceResult_Success_DEFAULT TEntryList
var I64ListI64ServiceGetSliceReverseResult_Success_DEFAULT TEntryList

func TEntryListPtr

func TEntryListPtr(v TEntryList) *TEntryList

type TKey

type TKey int64

func TKeyPtr

func TKeyPtr(v TKey) *TKey

type TKeyList

type TKeyList []TKey

func TKeyListPtr

func TKeyListPtr(v TKeyList) *TKeyList

type TValue

type TValue struct {
	Entries TEntryList `thrift:"entries,1" db:"entries" json:"entries"`
}

Attributes:

  • Entries
var I64ListI64ServicePutValueArgs_Value_DEFAULT *TValue

func NewTValue

func NewTValue() *TValue

func (*TValue) GetEntries

func (p *TValue) GetEntries() TEntryList

func (*TValue) Read

func (p *TValue) Read(iprot thrift.TProtocol) error

func (*TValue) ReadField1

func (p *TValue) ReadField1(iprot thrift.TProtocol) error

func (*TValue) String

func (p *TValue) String() string

func (*TValue) Write

func (p *TValue) Write(oprot thrift.TProtocol) error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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