-
Notifications
You must be signed in to change notification settings - Fork 125
/
index.d.ts
326 lines (286 loc) · 8.35 KB
/
index.d.ts
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
// Type definitions for rsmq 0.8.3
// Project: rsmq
// Definitions by: erdii https://github.com/erdii
/*~ This is the module template file for class modules.
*~ You should rename it to index.d.ts and place it in a folder with the same name as the module.
*~ For example, if you were writing a file for "super-greeter", this
*~ file should be 'super-greeter/index.d.ts'
*/
/*~ Note that ES6 modules cannot directly export class objects.
*~ This file should be imported using the CommonJS-style:
*~ import x = require('someLibrary');
*~
*~ Refer to the documentation to understand common
*~ workarounds for this limitation of ES6 modules.
*/
import { ClientOpts, RedisClient } from "redis";
/*~ This declaration specifies that the class constructor function
*~ is the exported object from the file
*/
export = RedisSMQ;
/*~ Write your module's methods and properties in this class */
declare class RedisSMQ {
constructor(options: RedisSMQ.ConstructorOptions);
quit(cb: RedisSMQ.Callback<string>): void;
createQueue(opts: RedisSMQ.CreateQueueOptions, cb: RedisSMQ.Callback<1>): void;
createQueueAsync(opts: RedisSMQ.CreateQueueOptions): Promise<1>;
listQueues(cb: RedisSMQ.Callback<string[]>): void;
listQueuesAsync(): Promise<string[]>;
deleteQueue(opts: RedisSMQ.DeleteQueueOptions, cb: RedisSMQ.Callback<1>): void;
deleteQueueAsync(opts: RedisSMQ.DeleteQueueOptions): Promise<1>;
getQueueAttributes(opts: RedisSMQ.GetQueueAttributesOptions, cb: RedisSMQ.Callback<RedisSMQ.QueueAttributes>): void;
getQueueAttributesAsync(opts: RedisSMQ.GetQueueAttributesOptions): Promise<RedisSMQ.QueueAttributes>;
setQueueAttributes(opts: RedisSMQ.SetQueueAttributesOptions, cb: RedisSMQ.Callback<RedisSMQ.QueueAttributes>): void;
setQueueAttributesAsync(opts: RedisSMQ.SetQueueAttributesOptions): Promise<RedisSMQ.QueueAttributes>;
sendMessage(opts: RedisSMQ.SendMessageOptions, cb: RedisSMQ.Callback<string>): void;
sendMessageAsync(opts: RedisSMQ.SendMessageOptions): Promise<string>;
receiveMessage(opts: RedisSMQ.ReceiveMessageOptions, cb: RedisSMQ.Callback<RedisSMQ.QueueMessage|{}>): void;
receiveMessageAsync(opts: RedisSMQ.ReceiveMessageOptions): Promise<RedisSMQ.QueueMessage|{}>;
popMessage(opts: RedisSMQ.PopMessageOptions, cb: RedisSMQ.Callback<RedisSMQ.QueueMessage|{}>): void;
popMessageAsync(opts: RedisSMQ.PopMessageOptions): Promise<RedisSMQ.QueueMessage|{}>;
deleteMessage(opts: RedisSMQ.DeleteMessageOptions, cb: RedisSMQ.Callback<0|1>): void;
deleteMessageAsync(opts: RedisSMQ.DeleteMessageOptions): Promise<0|1>;
changeMessageVisibility(opts: RedisSMQ.ChangeMessageVisibilityOptions, cb: RedisSMQ.Callback<0|1>): void;
changeMessageVisibilityAsync(opts: RedisSMQ.ChangeMessageVisibilityOptions): Promise<0|1>;
}
declare namespace RedisSMQ {
export type Callback<T> = (err: any, response: T) => void;
export interface ConstructorOptions {
realtime?: boolean;
host?: string;
port?: number;
ns?: string;
options?: ClientOpts;
client?: RedisClient;
password?: string;
}
interface BaseOptions {
/**
* The Queue name.
* Maximum 160 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
*
* @type {string}
* @memberof BaseQueueOptions
*/
qname: string;
}
export interface CreateQueueOptions extends BaseOptions {
/**
* *(Default: 30)*
* The length of time, in seconds, that a message received from a queue will
* be invisible to other receiving components when they ask to receive messages.
* Allowed values: 0-9999999 (around 115 days)
*
* @type {number}
* @memberof CreateQueueOptions
*/
vt?: number;
/**
* *(Default: 0)*
* The time in seconds that the delivery of all new messages in the queue will be delayed.
* Allowed values: 0-9999999 (around 115 days)
*
* @type {number}
* @memberof CreateQueueOptions
*/
delay?: number;
/**
* *(Default: 65536)*
* The maximum message size in bytes.
* Allowed values: 1024-65536 and -1 (for unlimited size)
*
* @type {number}
* @memberof CreateQueueOptions
*/
maxsize?: number;
}
export interface DeleteQueueOptions extends BaseOptions {}
export interface GetQueueAttributesOptions extends BaseOptions {}
export interface SetQueueAttributesOptions extends BaseOptions {
/**
* The length of time, in seconds,
* that a message received from a queue will be invisible to other receiving components
* when they ask to receive messages.
* Allowed values: 0-9999999 (around 115 days)
*
* @type {number}
* @memberof SetQueueAttributesOptions
*/
vt?: number;
/**
* The time in seconds that the delivery of all new messages in the queue will be delayed.
* Allowed values: 0-9999999 (around 115 days)
*
* @type {number}
* @memberof SetQueueAttributesOptions
*/
delay?: number;
/**
* The maximum message size in bytes.
* Allowed values: 1024-65536 and -1 (for unlimited size)
*
* @type {number}
* @memberof SetQueueAttributesOptions
*/
maxsize?: number;
}
export interface SendMessageOptions extends BaseOptions {
/**
* Message for the queue
*
* @type {string}
* @memberof SendMessageOptions
*/
message: string;
/**
* *(Default: queue settings)*
* The time in seconds that the delivery of the message will be delayed.
* Allowed values: 0-9999999 (around 115 days)
*
* @type {number}
* @memberof SendMessageOptions
*/
delay?: number;
}
export interface ReceiveMessageOptions extends BaseOptions {
/**
* *(Default: queue settings)*
* The length of time, in seconds, that the received message will be invisible to others.
* Allowed values: 0-9999999 (around 115 days)
*
* @type {number}
* @memberof ReceiveMessageOptions
*/
vt?: number;
}
export interface PopMessageOptions extends BaseOptions {}
export interface DeleteMessageOptions extends BaseOptions {
/**
* message id to delete.
*
* @type {string}
* @memberof DeleteMessageOptions
*/
id: string;
}
export interface ChangeMessageVisibilityOptions extends BaseOptions {
/**
* message id to modify.
*
* @type {string}
* @memberof DeleteMessageOptions
*/
id: string;
/**
* The length of time, in seconds, that this message will not be visible.
* Allowed values: 0-9999999 (around 115 days)
*
* @type {number}
* @memberof ChangeMessageVisibilityOptions
*/
vt: number;
}
export interface QueueMessage {
/**
* The message's contents.
*
* @type {string}
* @memberof QueueMessage
*/
message: string;
/**
* The internal message id.
*
* @type {string}
* @memberof QueueMessage
*/
id: string;
/**
* Timestamp of when this message was sent / created.
*
* @type {number}
* @memberof QueueMessage
*/
sent: number;
/**
* Timestamp of when this message was first received.
*
* @type {number}
* @memberof QueueMessage
*/
fr: number;
/**
* Number of times this message was received.
*
* @type {number}
* @memberof QueueMessage
*/
rc: number;
}
export interface QueueAttributes {
/**
* The visibility timeout for the queue in seconds
*
* @type {number}
* @memberof QueueAttributes
*/
vt: number;
/**
* The delay for new messages in seconds
*
* @type {number}
* @memberof QueueAttributes
*/
delay: number;
/**
* The maximum size of a message in bytes
*
* @type {number}
* @memberof QueueAttributes
*/
maxsize: number;
/**
* Total number of messages received from the queue
*
* @type {number}
* @memberof QueueAttributes
*/
totalrecv: number;
/**
* Total number of messages sent to the queue
*
* @type {number}
* @memberof QueueAttributes
*/
totalsent: number;
/**
* Timestamp (epoch in seconds) when the queue was created
*
* @type {number}
* @memberof QueueAttributes
*/
created: number;
/**
* Timestamp (epoch in seconds) when the queue was last modified with `setQueueAttributes`
*
* @type {number}
* @memberof QueueAttributes
*/
modified: number;
/**
* Current number of messages in the queue
*
* @type {number}
* @memberof QueueAttributes
*/
msgs: number;
/**
* Current number of hidden / not visible messages.
* A message can be hidden while "in flight" due to a `vt` parameter or when sent with a `delay`
*
* @type {number}
* @memberof QueueAttributes
*/
hiddenmsgs: number;
}
}