@nozbe/watermelondb
Version:
Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast
9 lines (6 loc) • 376 B
TypeScript
import type { ConnectableObservable, Observable, ReplaySubject, multicast } from '../__wmelonRxShim'
// Creates a Connectable observable, that, while connected, replays the latest emission
// upon subscription. When disconnected, the replay cache is cleared.
export default function publishReplayLatestWhileConnected<T>(
source: Observable<T>,
): ConnectableObservable<T>