Writing to Service Bus or Database from Application layer #624
Unanswered
sforsandeep
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to build an Azure function using this Architecture. In my application I have a requirement of writing into DB and also writing some messages into Service Bus.
So in my infrastructure layer I have created a class like this MessageBroker.cs
public interface IMessageBrokerService
{
Task PushToTopic(string topic, string message);
}
Beta Was this translation helpful? Give feedback.
All reactions