rethinkdb icon indicating copy to clipboard operation
rethinkdb copied to clipboard

Change Feed

Open aromal-sasidharan opened this issue 5 years ago • 4 comments

Please give example for change feeds in dart.

r.table('users').changes.run(conn).each{|change| p(change)}

aromal-sasidharan avatar Nov 20 '20 20:11 aromal-sasidharan

An example of change feeds with Streambuilder would be great for real-time updates within the Flutter app.

meghead avatar Jan 30 '21 17:01 meghead

Is realtime supported?

hhfa1990 avatar May 15 '21 00:05 hhfa1990

Is there any solution to use change feeds ?

a-ahmed116 avatar Jul 02 '21 20:07 a-ahmed116

Feed feed = await r.table("tablename").changes().run(connection); feed.listen((data) { debugPrint(data.toString()); });

nuriodaci avatar Feb 02 '22 11:02 nuriodaci