2015-07-07 02:54:22 +02:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
|
|
|
// This file is part of go-ethereum.
|
|
|
|
//
|
|
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// go-ethereum is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2015-03-16 11:27:38 +01:00
|
|
|
package common
|
2014-02-14 23:56:09 +01:00
|
|
|
|
|
|
|
// Database interface
|
|
|
|
type Database interface {
|
2015-06-20 20:31:11 +02:00
|
|
|
Put(key []byte, value []byte) error
|
2014-02-14 23:56:09 +01:00
|
|
|
Get(key []byte) ([]byte, error)
|
2014-02-24 12:12:01 +01:00
|
|
|
Delete(key []byte) error
|
2014-02-14 23:56:09 +01:00
|
|
|
Close()
|
2015-04-22 12:46:41 +02:00
|
|
|
Flush() error
|
2014-02-14 23:56:09 +01:00
|
|
|
}
|