Skip to main content

◆ DecodeRawBinaryDataUsingTypeIDs< T >() [1/2]

void kinetica.Kinetica.DecodeRawBinaryDataUsingTypeIDs< T > (IList< string >type_ids,
IList< byte[]>records_binary,
IList< T >records )
inline

Given IDs of records types registered with Kinetica, decode binary data into distinct records (objects).

Template Parameters
TThe type of the records.
Parameters
type_idsThe IDs for each of the records’ types.
records_binaryThe binary encoded data to be decoded.
recordsThe decoded objects/records.
Type Constraints
T :new() 

Definition at line 1104 of file Kinetica.cs.

◆ DecodeRawBinaryDataUsingTypeIDs< T >() [2/2]

void kinetica.Kinetica.DecodeRawBinaryDataUsingTypeIDs< T > (IList< string >type_ids,
IList< IList< byte[]> >lists_records_binary,
IList< IList< T > >record_lists )
inline

Given IDs of records types registered with Kinetica, decode binary data into distinct records (objects).

Template Parameters
TThe type of the records.
Parameters
type_idsThe IDs for each of the lists of records.
lists_records_binaryThe binary encoded data to be decoded in a 2d list.
record_listsThe decoded objects/records in a 2d list.
Type Constraints
T :new() 

Definition at line 1133 of file Kinetica.cs.