- What is a stream?
A sequence of events is called a stream. A stream can emit three things: a value, an error, and a signal for completion.
- What are reactive properties?
Reactive properties are binding properties that react when an event triggers.
- What is a reactive system?
On the basis of the Reactive Manifesto, we can conclude that reactive systems are as follows:
-
- Responsive: Reactive systems are event-based design systems because of this design approach; these systems are quick to respond to any request in a short time.
- Scalable: Reactive systems are reactive in nature. These systems can react to change the scalability rate by expanding or reducing the allocated resources.
- Resilient: A resilient system is one that would not stop, even if there is any failure/exception. Reactive systems are designed in...