1
votes

Is there Azure service bus message expire event? .
I could see TimeToLive property according this source. i am sending messages to azure service bus queue and need to identify when those message are expired .

1
You want to know how to set the ttl value when you send the message?George Chen
@GeorgeChen if message is arrived , i could add receiver handler as this code link. i am looking similar approach when message is expiredInfoÁsith

1 Answers

0
votes

Expired messages are dropped from the queue. There's no event.

You can enable dead-lettering of the expired messages and the dead-letter reason would indicate message expiration as the reason for the message ending up in the dead-letter queue.