An Azure Service Fabric application contains one or more services that run your code. By using the Reliable Service model, you can create both stateless and stateful services. The Reliable Services programming model offers the following capabilities for your services:
- It gives you access to all of the Service Fabric programming APIs directly. Your services can do the following:
- Query the system
- Report the health of all of the entities inside a cluster
- Receive notifications about configuration and code changes
- Find and communicate with other services
- Use Reliable Collections
- Give access to many other capabilities, in several programming languages
- There's a pluggable communication model, by means ...