Container object for records. Records are equivalent to rows.
Inheritance Hierarchy
Aerospike.ClientRecord
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.3.0.0 (5.3.0)
Syntax
C#
public sealed class Record
The Record type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | Record |
Initialize record.
|
Properties
Name | Description | |
---|---|---|
![]() | TimeToLive |
Methods
Name | Description | |
---|---|---|
![]() | GetBool |
Get bin value as bool.
|
![]() | GetByte |
Get bin value as byte.
|
![]() | GetDouble |
Get bin value as double.
|
![]() | GetFloat |
Get bin value as float.
|
![]() | GetGeoJSON |
Get bin value as GeoJSON.
|
![]() | GetHLLValue |
Get bin value as HLLValue.
|
![]() | GetInt |
Get bin value as int.
|
![]() | GetList |
Get bin value as list.
|
![]() | GetLong |
Get bin value as long.
|
![]() | GetMap |
Get bin value as dictionary map.
|
![]() | GetSBytes |
Get bin value as sbyte.
|
![]() | GetShort |
Get bin value as short.
|
![]() | GetString |
Get bin value as string.
|
![]() | GetUDFError |
Get the error string returned by a UDF execute in a batch.
Return null if an error did not occur.
|
![]() | GetUDFResult |
Get the value returned by a UDF execute in a batch.
The result may be null.
|
![]() | GetUInt |
Get bin value as uint.
|
![]() | GetULong |
Get bin value as ulong.
|
![]() | GetUShort |
Get bin value as ushort.
|
![]() | GetValue |
Get bin value given bin name.
Enter empty string ("") for servers configured as single-bin.
|
![]() | ToString |
Return string representation of record.
(Overrides ObjectToString.) |
Fields
Name | Description | |
---|---|---|
![]() | bins |
Map of requested name/value bins.
|
![]() | expiration |
Date record will expire, in seconds from Jan 01 2010 00:00:00 GMT
|
![]() | generation |
Record modification count.
|
See Also