Concept Flow - filter operator for selection
Start Observable Stream
Emit values over time
Apply filter operator
Check each value with condition
Pass value
Emit filtered values
Subscribe
The filter operator checks each emitted value from an observable. It passes only those values that meet a condition to the subscriber.