JakeWharton / RxReplayingShare

An RxJava transformer which combines replay(1), publish(), and refCount() operators.
Apache License 2.0
626 stars 28 forks source link

how to invalidate the cache some time #24

Closed shakil807g closed 7 years ago

shakil807g commented 7 years ago

i want to re subscribe to upper stream in order to fetch new data some time how can i achive it ??

JakeWharton commented 7 years ago

This is not supported. If you want to cause a resubscription you'll have to do it outside the replaying share operator such as with a separate timer. I would suggest asking on StackOverflow with the 'rxjava' tag as this is applicable to any observable, not just ones with the replaying share operator applied.