Skip to main content

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

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

Given a list of schema strings, decode binary data into distinct records (objects).

Template Parameters
TThe type of the records.
Parameters
schema_stringsThe schemas for the records.
lists_records_binaryThe binary encoded data to be decoded (the data is in a 2D list).
record_listsThe decoded objects/records in a 2d list.
Type Constraints
T :new() 

Definition at line 1064 of file Kinetica.cs.

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

void kinetica.Kinetica.DecodeRawBinaryDataUsingSchemaString< T > (stringschema_string,
IList< byte[]>records_binary,
IList< T >records )
inline

Given a schema string for a certain record type, decode binary data into distinct records (objects).

Template Parameters
TThe type of the records.
Parameters
schema_stringThe schema for the records.
records_binaryThe binary encoded data to be decoded.
recordsThe decoded objects/records.
Type Constraints
T :new() 

Definition at line 1040 of file Kinetica.cs.