C# Класс DBreeze.LianaTrie.LTrieRow

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
Key byte[]
Value byte[]
ValueFullLength uint
ValueIsReadOut bool
ValueStartPointer long

Открытые методы

Метод Описание
GetFullValue ( bool useCache ) : byte[]

Returns either value as byte array or null if value doesn't exist

GetPartialValue ( uint startIndex, uint length, bool useCache ) : byte[]

Returns either value partially or null

LTrieRow ( LTrieRootNode root ) : System

Описание методов

GetFullValue() публичный Метод

Returns either value as byte array or null if value doesn't exist
public GetFullValue ( bool useCache ) : byte[]
useCache bool if true, then only committed data will be shown
Результат byte[]

GetPartialValue() публичный Метод

Returns either value partially or null
public GetPartialValue ( uint startIndex, uint length, bool useCache ) : byte[]
startIndex uint
length uint
useCache bool if true, then only committed data will be shown
Результат byte[]

LTrieRow() публичный Метод

public LTrieRow ( LTrieRootNode root ) : System
root LTrieRootNode
Результат System

Описание свойств

Key публичное свойство

Default is null
public byte[] Key
Результат byte[]

Value публичное свойство

public byte[] Value
Результат byte[]

ValueFullLength публичное свойство

If ValueStartPointer == -1, has no meaning
public uint ValueFullLength
Результат uint

ValueIsReadOut публичное свойство

public bool ValueIsReadOut
Результат bool

ValueStartPointer публичное свойство

Represents pointer to the value in physical file, remember for READ must come via sync-cache -1 if not defined
public long ValueStartPointer
Результат long