| 74 | } |
| 75 | |
| 76 | export interface CreateQueueOptions extends BaseOptions { |
| 77 | /** |
| 78 | * *(Default: 30)* |
| 79 | * The length of time, in seconds, that a message received from a queue will |
| 80 | * be invisible to other receiving components when they ask to receive messages. |
| 81 | * Allowed values: 0-9999999 (around 115 days) |
| 82 | * |
| 83 | * @type {number} |
| 84 | * @memberof CreateQueueOptions |
| 85 | */ |
| 86 | vt?: number; |
| 87 | |
| 88 | /** |
| 89 | * *(Default: 0)* |
| 90 | * The time in seconds that the delivery of all new messages in the queue will be delayed. |
| 91 | * Allowed values: 0-9999999 (around 115 days) |
| 92 | * |
| 93 | * @type {number} |
| 94 | * @memberof CreateQueueOptions |
| 95 | */ |
| 96 | delay?: number; |
| 97 | |
| 98 | /** |
| 99 | * *(Default: 65536)* |
| 100 | * The maximum message size in bytes. |
| 101 | * Allowed values: 1024-65536 and -1 (for unlimited size) |
| 102 | * |
| 103 | * @type {number} |
| 104 | * @memberof CreateQueueOptions |
| 105 | */ |
| 106 | maxsize?: number; |
| 107 | } |
| 108 | |
| 109 | export interface DeleteQueueOptions extends BaseOptions {} |
| 110 |
nothing calls this directly
no outgoing calls
no test coverage detected