2014-08-03 15:59:56 +02:00
|
|
|
// Copyright 2014 by Sascha L. Teichmann
|
|
|
|
// Use of this source code is governed by the MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2014-08-03 11:25:25 +02:00
|
|
|
package main
|
|
|
|
|
2014-08-06 01:11:41 +02:00
|
|
|
type Session interface {
|
2014-08-03 11:25:25 +02:00
|
|
|
Fetch(hash, key []byte) ([]byte, error)
|
|
|
|
InTransaction() bool
|
|
|
|
Store(hash, key, value []byte) (bool, error)
|
|
|
|
BeginTransaction() error
|
2014-08-03 14:52:24 +02:00
|
|
|
CommitTransaction() error
|
2014-08-06 01:11:41 +02:00
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
|
|
|
type Backend interface {
|
|
|
|
NewSession() (Session, error)
|
2014-08-03 11:25:25 +02:00
|
|
|
Shutdown() error
|
|
|
|
}
|