Is it possible in storio subscribe only for changes in database, but without first emit (which just reads current data in a table)?
Of course, I can do something like ...asObservable().skip(1)
But it's actually reading table in vain for the first time!
Is it possible in storio subscribe only for changes in database, but without first emit (which just reads current data in a table)? Of course, I can do something like
...asObservable().skip(1)
But it's actually reading table in vain for the first time!