http - can azure service bus (for a topic) send notification to a rest end point (POST) -
i need azure service bus notify end point (rest - post) whenever message comes particular topic.
in aws, done way aws llink
what equivalent in azure. note: dont want write code receive message , call end point.
azure service bus messaging service, not notifications service. such, deals solely messaging, , doesn't create notifications you.
aws combines sqs (simple queuing service) sns (simple notification service) behind scenes allow functionality you're describing. allow sqs have behaviour of events. azure service bus has native support topics , subscriptions (if that's you're looking for). i.e. rather sending messages queue, message sent topic , appropriate subscriber(s) it.
so short answer question in case don't want receive message , trigger notification "no".
saying that, if you're ok "serverless" functions (similar aws lambdas), use azure functions achieve goal.
Comments
Post a Comment