Delete

@Serializable
data class Delete(val key: String) : LevelDBBatchOperation

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

This operation encapsulates the removal of a key-value pair within a batch context in LevelDB.

Constructors

Link copied to clipboard
constructor(key: String)

Properties

Link copied to clipboard
open override val key: String

The key associated with the pair to be deleted.