ReactivePlusPlus
ReactiveX implementation for C++20
|
A concept that defines the requirements for an observable strategy. More...
#include <fwd.hpp>
A concept that defines the requirements for an observable strategy.
This concept ensures that a type S
meets the following criteria:
subscribe
method that accepts observer of type T
and returns void
.value_type
to represent the type of values emitted by the observable.optimal_disposables_strategy
to define the optimal disposables strategy observer could/should use to handle current observable properly.S | The type to be checked against the concept. |
T | The type of the values emitted by the observable. |