예제 #1
0
func (c *queryTestDS) Batch() (ds.Batch, error) {
	return ds.NewBasicBatch(c), nil
}
예제 #2
0
func (c *callbackDatastore) Batch() (ds.Batch, error) {
	return ds.NewBasicBatch(c), nil
}
예제 #3
0
파일: delayed.go 프로젝트: noffle/go-ipfs
func (dds *delayed) Batch() (ds.Batch, error) {
	return ds.NewBasicBatch(dds), nil
}
예제 #4
0
파일: datastore.go 프로젝트: noffle/go-ipfs
func (ds *S3Datastore) Batch() (datastore.Batch, error) {
	return datastore.NewBasicBatch(ds), nil
}
예제 #5
0
파일: fs.go 프로젝트: noffle/go-ipfs
func (d *Datastore) Batch() (ds.Batch, error) {
	return ds.NewBasicBatch(d), nil
}