rethinkdb
rethinkdb copied to clipboard
Change Feed
Please give example for change feeds in dart.
r.table('users').changes.run(conn).each{|change| p(change)}
An example of change feeds with Streambuilder would be great for real-time updates within the Flutter app.
Is realtime supported?
Is there any solution to use change feeds ?
Feed feed = await r.table("tablename").changes().run(connection); feed.listen((data) { debugPrint(data.toString()); });