forked from couchbase/gocbcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crud_options.go
341 lines (284 loc) · 8.65 KB
/
crud_options.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
package gocbcore
import (
"time"
"github.com/couchbase/gocbcore/v10/memd"
)
// GetOptions encapsulates the parameters for a GetEx operation.
type GetOptions struct {
Key []byte
CollectionName string
ScopeName string
CollectionID uint32
RetryStrategy RetryStrategy
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// GetAndTouchOptions encapsulates the parameters for a GetAndTouchEx operation.
type GetAndTouchOptions struct {
Key []byte
Expiry uint32
CollectionName string
ScopeName string
CollectionID uint32
RetryStrategy RetryStrategy
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// GetAndLockOptions encapsulates the parameters for a GetAndLockEx operation.
type GetAndLockOptions struct {
Key []byte
LockTime uint32
CollectionName string
ScopeName string
CollectionID uint32
RetryStrategy RetryStrategy
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// GetAnyReplicaOptions encapsulates the parameters for a GetAnyReplicaEx operation.
type GetAnyReplicaOptions struct {
Key []byte
CollectionName string
ScopeName string
CollectionID uint32
RetryStrategy RetryStrategy
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// GetOneReplicaOptions encapsulates the parameters for a GetOneReplicaEx operation.
type GetOneReplicaOptions struct {
Key []byte
CollectionName string
ScopeName string
CollectionID uint32
RetryStrategy RetryStrategy
ReplicaIdx int
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// TouchOptions encapsulates the parameters for a TouchEx operation.
type TouchOptions struct {
Key []byte
Expiry uint32
CollectionName string
ScopeName string
CollectionID uint32
RetryStrategy RetryStrategy
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// UnlockOptions encapsulates the parameters for a UnlockEx operation.
type UnlockOptions struct {
Key []byte
Cas Cas
CollectionName string
ScopeName string
CollectionID uint32
RetryStrategy RetryStrategy
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// DeleteOptions encapsulates the parameters for a DeleteEx operation.
type DeleteOptions struct {
Key []byte
CollectionName string
ScopeName string
RetryStrategy RetryStrategy
Cas Cas
DurabilityLevel memd.DurabilityLevel
DurabilityLevelTimeout time.Duration
CollectionID uint32
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// AddOptions encapsulates the parameters for a AddEx operation.
type AddOptions struct {
Key []byte
CollectionName string
ScopeName string
RetryStrategy RetryStrategy
Value []byte
Flags uint32
Datatype uint8
Expiry uint32
DurabilityLevel memd.DurabilityLevel
DurabilityLevelTimeout time.Duration
CollectionID uint32
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
type storeOptions struct {
Key []byte
CollectionName string
ScopeName string
RetryStrategy RetryStrategy
Value []byte
Flags uint32
Datatype uint8
Cas Cas
Expiry uint32
DurabilityLevel memd.DurabilityLevel
DurabilityLevelTimeout time.Duration
CollectionID uint32
Deadline time.Time
PreserveExpiry bool
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// SetOptions encapsulates the parameters for a SetEx operation.
type SetOptions struct {
Key []byte
CollectionName string
ScopeName string
RetryStrategy RetryStrategy
Value []byte
Flags uint32
Datatype uint8
Expiry uint32
DurabilityLevel memd.DurabilityLevel
DurabilityLevelTimeout time.Duration
CollectionID uint32
Deadline time.Time
PreserveExpiry bool
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// ReplaceOptions encapsulates the parameters for a ReplaceEx operation.
type ReplaceOptions struct {
Key []byte
CollectionName string
ScopeName string
RetryStrategy RetryStrategy
Value []byte
Flags uint32
Datatype uint8
Cas Cas
Expiry uint32
DurabilityLevel memd.DurabilityLevel
DurabilityLevelTimeout time.Duration
CollectionID uint32
Deadline time.Time
PreserveExpiry bool
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// AdjoinOptions encapsulates the parameters for a AppendEx or PrependEx operation.
type AdjoinOptions struct {
Key []byte
Value []byte
CollectionName string
ScopeName string
RetryStrategy RetryStrategy
Cas Cas
DurabilityLevel memd.DurabilityLevel
DurabilityLevelTimeout time.Duration
CollectionID uint32
Deadline time.Time
PreserveExpiry bool
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// CounterOptions encapsulates the parameters for a IncrementEx or DecrementEx operation.
type CounterOptions struct {
Key []byte
Delta uint64
Initial uint64
Expiry uint32
CollectionName string
ScopeName string
RetryStrategy RetryStrategy
Cas Cas
DurabilityLevel memd.DurabilityLevel
DurabilityLevelTimeout time.Duration
CollectionID uint32
Deadline time.Time
PreserveExpiry bool
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// GetRandomOptions encapsulates the parameters for a GetRandomEx operation.
type GetRandomOptions struct {
RetryStrategy RetryStrategy
Deadline time.Time
CollectionName string
ScopeName string
CollectionID uint32
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// GetMetaOptions encapsulates the parameters for a GetMetaEx operation.
type GetMetaOptions struct {
Key []byte
CollectionName string
ScopeName string
CollectionID uint32
RetryStrategy RetryStrategy
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// SetMetaOptions encapsulates the parameters for a SetMetaEx operation.
type SetMetaOptions struct {
Key []byte
Value []byte
Extra []byte
Datatype uint8
Options uint32
Flags uint32
Expiry uint32
Cas Cas
RevNo uint64
CollectionName string
ScopeName string
CollectionID uint32
RetryStrategy RetryStrategy
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}
// DeleteMetaOptions encapsulates the parameters for a DeleteMetaEx operation.
type DeleteMetaOptions struct {
Key []byte
Value []byte
Extra []byte
Datatype uint8
Options uint32
Flags uint32
Expiry uint32
Cas Cas
RevNo uint64
CollectionName string
ScopeName string
CollectionID uint32
RetryStrategy RetryStrategy
Deadline time.Time
// Internal: This should never be used and is not supported.
User string
TraceContext RequestSpanContext
}