I'm currently using this to perform notifications:
/**
* Create notifications that broacast
* the entire set of entries.
*/
protected notify = new ReplaySubject<E[]>(1);
IIUC I can switch out the ReplaySubject<E[]>(1) with AsyncSubject<E[]>()?
Would this be an apple to apple switch or might here be semantic differences?