RealTimeBaseRecord Class Methods
- Last UpdatedApr 08, 2026
- 4 minute read
For a list of all members of this type, see RealTimeBaseRecord members.
| Name | Description | |
|---|---|---|
![]() | AttachInsteadOfLock | Overloaded. Attaches already bound record to shared memory without locking. UnLock() or DetachInsteadOfUnLock() can be used to finish changes. |
![]() | BindRecordNumber | Bind to a specific record number. If record object is bound to a table then it'll check whether given record number exists in the database or not. |
![]() | BindTable | Bind to a specific table |
![]() | CloneInMemoryCopy | Creates a new record object based on the current one. The newly created record object will not be connected to the database, but instead will be linked to an in memory copy of the current record. |
![]() ![]() | CreateInMemoryRecord | Overloaded. Creates a new in memory record object. The newly created record object will not be connected to the database, but instead will be linked to an in memory copy of the current record. |
![]() | CreateLocal | Create internal local memory for the object. This wont be linked with real time database. |
![]() | DeleteOnUnLock | Unlocks the record and deletes it |
![]() | DetachInsteadOfUnLock | Detach internal pointer without unlocking record. |
![]() | Dispose | Overloaded. Ensures that all resources are cleaned up |
![]() | GetPointerToField | Retrieves a direct pointer to a specific field |
![]() | GetRealTimeType | Get detail of table structure. |
![]() | Lock | Overloaded. Locks a specific record allowing for a timeout to be specified. |
![]() | Read | Specific method for reading a field of any type from the currently locked record. |
![]() | ReadData | Overloaded. Generic method; Reads a field from the currently locked record. Supports the following primitive types: bool, byte, double, float, int, long, short, uint, ulong, and ushort. |
![]() | ReadField<T> | Generic method; Reads a field from the currently locked record. Supports the following primitive types: string, bool, byte, double, float, int, long, short, uint, ulong, and ushort. |
![]() | ReadString | Overloaded. Specific method for reading a field of type string from the currently locked record. |
![]() | UnLock | Unlocks the record |
![]() | Write | Specific method for writing a field of any type from the currently locked record. |
![]() | WriteData | Overloaded. Generic method; Writes a field into the locked record. Change notification will be sent to Publisher and to Replication server. Supports the following primitive types: bool, byte, double, float, int, long, short, uint, ulong, and ushort. |
![]() | WriteField | Overloaded. Writes a field into the locked record. Change notification will be sent to Publisher and to Replication server. Supports the following primitive types: string, bool, byte, double, float, int, long, short, uint, ulong, and ushort. |
![]() | WriteRecord | Overloaded. Overwrite given record to this record. It will copy internal data of record to this record. |
![]() | WriteString | Overloaded. Specific method for writing a string type field into the locked record. Change notification will be sent to Publisher and to Replication server. |


