diff --git a/README.md b/README.md index 5f50ba9..613df88 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,7 @@ Quoted from AWS official blog: [Implementing Priority Queueing with Amazon Dynam - [x] **Graceful Shutdown**: Complete processing of messages before shutting down the consumer process. - [x] **FIFO (First In, First Out)**: Retrieve messages from the message queue on a first-in, first-out basis. - [x] **Consumer Process Scaling**: Scale out by running multiple consumer processes without duplicating message retrieval from the same message queue. +- [x] **Visibility Timeout**: DynamoMQ sets a visibility timeout, a period of time during which DynamoMQ prevents all consumers from receiving and processing the message. - [ ] **Deduplication**: Deduplication messages within the message queue. - [ ] **Randomized Exponential Backoff**: Prevent overlapping redelivery timing. - [ ] **Batch Message Processing**: Send and delete multiple messages in bulk to/from the message queue.