Pings a reactive if no value is emitted at after interval. Returns source.
interval
source
// Ping `source` if no value is emitted after one minuteconst r = Rx.timeoutPing(source, { mins: 1 }); Copy
// Ping `source` if no value is emitted after one minuteconst r = Rx.timeoutPing(source, { mins: 1 });
Behavior can be stopped using an abort signal.
ReactivePingable
Pings a reactive if no value is emitted at after
interval
. Returnssource
.Behavior can be stopped using an abort signal.