neumino / thinky

JavaScript ORM for RethinkDB
http://justonepixel.com/thinky/
Other
1.12k stars 128 forks source link

Is it possible to listen to a feed using callbacks (not promises)? #589

Closed siavee closed 7 years ago

siavee commented 8 years ago

Maybe something like this? Like the example on rethinkdb: Model.filter({threadId: id}).orderBy('created').changes().run(function(error, feed){ feed.each(console.log); });

neumino commented 7 years ago

Yes, that works.