PublishSubject emits to an Observer only those items that are emitted by the source Observable subsequent to the time of the subscription.
A simple PublishSubject example:
Observable<Long> clock = Observable.interval(500, TimeUnit.MILLISECONDS);
Subject<Long, Long> subjectLong = Publi...