mirror of
https://bitbucket.org/s_l_teichmann/mtsatellite
synced 2024-11-08 19:20:25 +01:00
29 lines
654 B
Go
29 lines
654 B
Go
// Copyright 2014, 2015 by Sascha L. Teichmann
|
|
// Use of this source code is governed by the MIT license
|
|
// that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
type (
|
|
Block struct {
|
|
Key []byte
|
|
Data []byte
|
|
}
|
|
|
|
Session interface {
|
|
Fetch(hash, key []byte) ([]byte, error)
|
|
InTransaction() bool
|
|
Store(hash, key, value []byte) (bool, error)
|
|
AllKeys(hash []byte, done chan struct{}) (chan []byte, int, error)
|
|
SpatialQuery(hash, first, second []byte, done chan struct{}) (chan Block, error)
|
|
BeginTransaction() error
|
|
CommitTransaction() error
|
|
Close() error
|
|
}
|
|
|
|
Backend interface {
|
|
NewSession() (Session, error)
|
|
Shutdown() error
|
|
}
|
|
)
|