Integrate public as bindata optionally (#293)

* Dropped unused codekit config

* Integrated dynamic and static bindata for public

* Ignore public bindata

* Add a general generate make task

* Integrated flexible public assets into web command

* Updated vendoring, added all missiong govendor deps

* Made the linter happy with the bindata and dynamic code

* Moved public bindata definition to modules directory

* Ignoring the new bindata path now

* Updated to the new public modules import path

* Updated public bindata command and drop the new prefix
This commit is contained in:
Thomas Boerger 2016-11-29 17:26:36 +01:00 committed by Lunny Xiao
parent 4680c349dd
commit b6a95a8cb3
691 changed files with 305318 additions and 1272 deletions

28
vendor/github.com/pingcap/go-themis/txn.go generated vendored Normal file
View file

@ -0,0 +1,28 @@
package themis
import (
"errors"
"github.com/pingcap/go-hbase"
)
var (
ErrLockNotExpired = errors.New("lock not expired")
ErrCleanLockFailed = errors.New("clean lock failed")
ErrWrongRegion = errors.New("wrong region, please retry")
ErrTooManyRows = errors.New("too many rows in one transaction")
ErrRetryable = errors.New("try again later")
)
type Txn interface {
Get(t string, get *hbase.Get) (*hbase.ResultRow, error)
Gets(t string, gets []*hbase.Get) ([]*hbase.ResultRow, error)
LockRow(t string, row []byte) error
Put(t string, put *hbase.Put)
Delete(t string, del *hbase.Delete) error
GetScanner(tbl []byte, startKey, endKey []byte, batchSize int) *ThemisScanner
Release()
Commit() error
GetStartTS() uint64
GetCommitTS() uint64
}