Put

@Serializable
data class Put(val key: String, val value: String) : LevelDBBatchOperation

Represents a 'put' operation in a batch for a LevelDB database.

This operation encapsulates inserting or updating a key-value pair within a batch context in LevelDB.

Constructors

Link copied to clipboard
constructor(key: String, value: String)

Properties

Link copied to clipboard
open override val key: String

The key associated with the value.

Link copied to clipboard

The value to be stored.