aboutsummaryrefslogtreecommitdiffstats
path: root/ethdb/interface.go
diff options
context:
space:
mode:
authorgary rong <garyrong0905@gmail.com>2018-07-02 16:16:30 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-07-02 16:16:30 +0800
commita4a2343cdc1946e38da1aea1476642d1744c1354 (patch)
treec01c563224aaf34a1a391665bcca0b693b9cf0ce /ethdb/interface.go
parentfdfd6d3c3963b1b3459e4625458495458b11e8a7 (diff)
downloadgo-tangerine-a4a2343cdc1946e38da1aea1476642d1744c1354.tar
go-tangerine-a4a2343cdc1946e38da1aea1476642d1744c1354.tar.gz
go-tangerine-a4a2343cdc1946e38da1aea1476642d1744c1354.tar.bz2
go-tangerine-a4a2343cdc1946e38da1aea1476642d1744c1354.tar.lz
go-tangerine-a4a2343cdc1946e38da1aea1476642d1744c1354.tar.xz
go-tangerine-a4a2343cdc1946e38da1aea1476642d1744c1354.tar.zst
go-tangerine-a4a2343cdc1946e38da1aea1476642d1744c1354.zip
ethdb, core: implement delete for db batch (#17101)
Diffstat (limited to 'ethdb/interface.go')
-rw-r--r--ethdb/interface.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/ethdb/interface.go b/ethdb/interface.go
index 537312003..af1355779 100644
--- a/ethdb/interface.go
+++ b/ethdb/interface.go
@@ -25,12 +25,17 @@ type Putter interface {
Put(key []byte, value []byte) error
}
+// Deleter wraps the database delete operation supported by both batches and regular databases.
+type Deleter interface {
+ Delete(key []byte) error
+}
+
// Database wraps all database operations. All methods are safe for concurrent use.
type Database interface {
Putter
+ Deleter
Get(key []byte) ([]byte, error)
Has(key []byte) (bool, error)
- Delete(key []byte) error
Close()
NewBatch() Batch
}
@@ -39,6 +44,7 @@ type Database interface {
// when Write is called. Batch cannot be used concurrently.
type Batch interface {
Putter
+ Deleter
ValueSize() int // amount of data in the batch
Write() error
// Reset resets the batch for reuse