This post explores how to leverage Azure Service Bus and Azure Functions to create a workflow framework capable of handling proccesses spanning multiple services.
All Posts
- A system typically has use cases requiring coordination between multiple services. When selling a product, for example, an ecommerce site may use several services to bill, deliver to, and communicate with the client. This post discusses a possible way to execute this type of use case.
- In the prior post we saw that LINQ does not provide an equivalent to the method SymmetricExceptWith. How would you implement an equivalent using only LINQ methods?
- A set is an unordered collection containing no duplicates. Common operations on sets include intersection, difference, and union. C# provides at least two ways of performing these operations: one is using LINQ extensions; the other, is Hashset, a generic collection.
- When modeling a system we have to determine how we are going to represent its state. In this post we explore how to do that for a traffic light.