On azure blob storage, when a blob file is added to the storage container, I have configured a message is to be sent to a storage queue. I have used a storage queue as there will a low number of daily files loaded to storage container. I am able to consume the message using the CloudQueueClient. As I have java spring boot app, is there any way to get triggered when a new message appears on the storage queue. Using some sort of Listener rather than polling continuously.
Thanks