Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scale-tone/letsgooutdemo
A demo project to demonstrate various approaches to building stateful services in Azure
https://github.com/scale-tone/letsgooutdemo
azure-durable-functions azure-signalr-service reliable-stateful-service service-fabric
Last synced: about 1 month ago
JSON representation
A demo project to demonstrate various approaches to building stateful services in Azure
- Host: GitHub
- URL: https://github.com/scale-tone/letsgooutdemo
- Owner: scale-tone
- License: mit
- Created: 2019-07-04T10:45:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-15T04:05:59.000Z (11 months ago)
- Last Synced: 2024-10-31T05:11:47.693Z (3 months ago)
- Topics: azure-durable-functions, azure-signalr-service, reliable-stateful-service, service-fabric
- Language: C#
- Homepage:
- Size: 3.91 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LetsGoOutDemo
This demo project demonstrates various ways of implementing the Saga/Workflow design pattern in Azure.
The use case is the same and it is pretty basic: we build a stateful service, that handles organizing appointments with multiple participants. Participants communicate with the service via a client web UI and can submit appointment proposals, accept and/or decline them. The service takes care of maintaining the appointment state and notifies participants about state changes.
* [**LetsGoOutDemo.React**](https://github.com/scale-tone/LetsGoOutDemo/tree/master/frontend/letsgooutdemo.react#letsgooutdemoreact) - a React+MobX+TypeScript simple web UI, that communicates with the backend and with [Azure SignalR Service](https://docs.microsoft.com/en-us/azure/azure-signalr/signalr-overview).
* [**LetsGoOutDemo.React-Native**](https://github.com/scale-tone/LetsGoOutDemo/tree/master/frontend/letsgooutdemo.react-native#letsgooutdemoreact-native) - a React Native (more precisely, [Expo](https://docs.expo.io/)) mobile app, that communicates with the backend and with [Azure SignalR Service](https://docs.microsoft.com/en-us/azure/azure-signalr/signalr-overview).
* [**LetsGoOutDemo.Functions**](https://github.com/scale-tone/LetsGoOutDemo/tree/master/backend/LetsGoOutDemo.Functions#letsgooutdemofunctions) - backend implemented with Azure Durable Functions (C#).
* [**LetsGoOutDemo.DurableEntities**](https://github.com/scale-tone/LetsGoOutDemo/tree/master/backend/LetsGoOutDemo.DurableEntities#letsgooutdemodurableentities) - backend implemented with Azure Durable Entities (C#).
* [**LetsGoOutDemo.ServiceFabric**](https://github.com/scale-tone/LetsGoOutDemo/tree/master/backend/LetsGoOutDemo.ServiceFabric#letsgooutdemoservicefabric) - backend implemented with [Service Fabric Reliable Actors](https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-reliable-actors-introduction).
* [**LetsGoOutDemo.AspNetCore**](https://github.com/scale-tone/LetsGoOutDemo/tree/master/backend/LetsGoOutDemo.AspNetCore#letsgooutdemoaspnetcore) - backend implemented with pure [Asp.Net Core](https://github.com/aspnet/AspNetCore) and [Redis Cache](https://redis.io).
Appointment state change notifications are sent via [Azure SignalR Service](https://docs.microsoft.com/en-us/azure/azure-signalr/signalr-overview).