RxCpp
The Reactive Extensions for Native (RxCpp) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators in both C and C++.
Static Public Member Functions | List of all members
rxcpp::member_overload< replay_tag > Struct Template Reference

#include <rx-replay.hpp>

Static Public Member Functions

template<class Observable , class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, identity_one_worker>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result member (Observable &&o)
 
template<class Observable , class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, identity_one_worker>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result member (Observable &&o, composite_subscription cs)
 
template<class Observable , class Coordination , class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, is_coordination<Coordination>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result member (Observable &&o, Coordination &&cn, composite_subscription cs=composite_subscription())
 
template<class Observable , class Count , class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, std::is_integral<Count>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, identity_one_worker>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result member (Observable &&o, Count count, composite_subscription cs=composite_subscription())
 
template<class Observable , class Count , class Coordination , class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, std::is_integral<Count>, is_coordination<Coordination>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result member (Observable &&o, Count count, Coordination &&cn, composite_subscription cs=composite_subscription())
 
template<class Observable , class Duration , class IsDuration = rxu::is_duration<Duration>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, IsDuration>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, identity_one_worker>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result member (Observable &&o, Duration &&d, composite_subscription cs=composite_subscription())
 
template<class Observable , class Duration , class Coordination , class IsDuration = rxu::is_duration<Duration>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, IsDuration, is_coordination<Coordination>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result member (Observable &&o, Duration &&d, Coordination &&cn, composite_subscription cs=composite_subscription())
 
template<class Observable , class Count , class Duration , class IsDuration = rxu::is_duration<Duration>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, std::is_integral<Count>, IsDuration>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, identity_one_worker>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result member (Observable &&o, Count count, Duration &&d, composite_subscription cs=composite_subscription())
 
template<class Observable , class Count , class Duration , class Coordination , class IsDuration = rxu::is_duration<Duration>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, std::is_integral<Count>, IsDuration, is_coordination<Coordination>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result member (Observable &&o, Count count, Duration &&d, Coordination &&cn, composite_subscription cs=composite_subscription())
 
template<class... AN>
static operators::detail::replay_invalid_t< AN... > member (AN...)
 

Member Function Documentation

template<class Observable , class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, identity_one_worker>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result rxcpp::member_overload< replay_tag >::member ( Observable &&  o)
inlinestatic
template<class Observable , class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, identity_one_worker>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result rxcpp::member_overload< replay_tag >::member ( Observable &&  o,
composite_subscription  cs 
)
inlinestatic
template<class Observable , class Coordination , class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, is_coordination<Coordination>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result rxcpp::member_overload< replay_tag >::member ( Observable &&  o,
Coordination &&  cn,
composite_subscription  cs = composite_subscription() 
)
inlinestatic
template<class Observable , class Count , class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, std::is_integral<Count>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, identity_one_worker>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result rxcpp::member_overload< replay_tag >::member ( Observable &&  o,
Count  count,
composite_subscription  cs = composite_subscription() 
)
inlinestatic
template<class Observable , class Count , class Coordination , class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, std::is_integral<Count>, is_coordination<Coordination>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result rxcpp::member_overload< replay_tag >::member ( Observable &&  o,
Count  count,
Coordination &&  cn,
composite_subscription  cs = composite_subscription() 
)
inlinestatic
template<class Observable , class Duration , class IsDuration = rxu::is_duration<Duration>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, IsDuration>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, identity_one_worker>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result rxcpp::member_overload< replay_tag >::member ( Observable &&  o,
Duration &&  d,
composite_subscription  cs = composite_subscription() 
)
inlinestatic
template<class Observable , class Duration , class Coordination , class IsDuration = rxu::is_duration<Duration>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, IsDuration, is_coordination<Coordination>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result rxcpp::member_overload< replay_tag >::member ( Observable &&  o,
Duration &&  d,
Coordination &&  cn,
composite_subscription  cs = composite_subscription() 
)
inlinestatic
template<class Observable , class Count , class Duration , class IsDuration = rxu::is_duration<Duration>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, std::is_integral<Count>, IsDuration>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, identity_one_worker>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result rxcpp::member_overload< replay_tag >::member ( Observable &&  o,
Count  count,
Duration &&  d,
composite_subscription  cs = composite_subscription() 
)
inlinestatic
template<class Observable , class Count , class Duration , class Coordination , class IsDuration = rxu::is_duration<Duration>, class Enabled = rxu::enable_if_all_true_type_t< is_observable<Observable>, std::is_integral<Count>, IsDuration, is_coordination<Coordination>>, class SourceValue = rxu::value_type_t<Observable>, class Subject = rxsub::replay<SourceValue, rxu::decay_t<Coordination>>, class Multicast = rxo::detail::multicast<SourceValue, rxu::decay_t<Observable>, Subject>, class Result = connectable_observable<SourceValue, Multicast>>
static Result rxcpp::member_overload< replay_tag >::member ( Observable &&  o,
Count  count,
Duration &&  d,
Coordination &&  cn,
composite_subscription  cs = composite_subscription() 
)
inlinestatic
template<class... AN>
static operators::detail::replay_invalid_t<AN...> rxcpp::member_overload< replay_tag >::member ( AN...  )
inlinestatic

The documentation for this struct was generated from the following file: