Documentation
¶
Overview ¶
Package operation provides types and interfaces for storage operations. It defines operation types and configurations used in transactional contexts.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Operation ¶
type Operation struct {
// contains filtered or unexported fields
}
Operation represents a storage operation to be executed. This is used within transactions and other operation contexts.
func Delete ¶
Delete creates a new delete operation for the specified key. Returns an Operation configured for removing data from storage.
func Get ¶
Get creates a new read operation for the specified key. Returns an Operation configured for reading data from storage.
func Put ¶
Put creates a new write operation for the specified key-value pair. Returns an Operation configured for writing data to storage.