Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Side by Side Diff: service/datastore/raw_interface.go

Issue 1270063002: Rename rawdatastore -> datastore (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: and a bit more Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « service/datastore/properties_test.go ('k') | service/datastore/reflect.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package rawdatastore 5 package datastore
6 6
7 import ( 7 import (
8 "fmt" 8 "fmt"
9 9
10 "golang.org/x/net/context" 10 "golang.org/x/net/context"
11 ) 11 )
12 12
13 // Key is the equivalent of *datastore.Key from the original SDK, except that 13 // Key is the equivalent of *datastore.Key from the original SDK, except that
14 // it can have multiple implementations. See helper.Key* methods for missing 14 // it can have multiple implementations. See helper.Key* methods for missing
15 // methods like KeyIncomplete (and some new ones like KeyValid). 15 // methods like KeyIncomplete (and some new ones like KeyValid).
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 // DeleteMulti removes items from the datastore. 118 // DeleteMulti removes items from the datastore.
119 // 119 //
120 // Callback execues once per key, in the order of keys. Callback may not 120 // Callback execues once per key, in the order of keys. Callback may not
121 // execute at all if there's a server error. 121 // execute at all if there's a server error.
122 // 122 //
123 // NOTE: Implementations and filters are guaranteed that keys are all Va lid 123 // NOTE: Implementations and filters are guaranteed that keys are all Va lid
124 // and Complete, and in the correct namespace, and are not 'special'. 124 // and Complete, and in the correct namespace, and are not 'special'.
125 // Callback may be nil. 125 // Callback may be nil.
126 DeleteMulti(keys []Key, cb DeleteMultiCB) error 126 DeleteMulti(keys []Key, cb DeleteMultiCB) error
127 } 127 }
OLDNEW
« no previous file with comments | « service/datastore/properties_test.go ('k') | service/datastore/reflect.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698