InsertRecord inserts a record with the given key (sequence number in big-endian format). Returns true if an existing record was replaced, false if a new record was inserted.
(key []byte, record *core.Record)
| 64 | // InsertRecord inserts a record with the given key (sequence number in big-endian format). |
| 65 | // Returns true if an existing record was replaced, false if a new record was inserted. |
| 66 | InsertRecord(key []byte, record *core.Record) bool |
| 67 | |
| 68 | // Delete removes the record with the given key. |
| 69 | // Returns true if the record was found and deleted, false otherwise. |
no outgoing calls