mfenniak / rethinkdb-net

A C# / .NET client driver for RethinkDB.
Other
247 stars 37 forks source link

Can realtime with winform and rethinkdb ? #253

Closed lyquocnam closed 8 years ago

lyquocnam commented 8 years ago

Can realtime with winform and rethinkdb ? this can be awesome.

mfenniak commented 8 years ago

Sure, you could use a Forms application and rethinkdb-net with change feed monitoring. One of our examples has real-time change feed monitoring in a console app: https://github.com/mfenniak/rethinkdb-net/tree/master/Examples/RethinkDb.Examples.ConsoleApp. Doing this in a forms app would be very similar, but you'd need to synchronize updates from the thread monitoring for changes to the UI thread.

lyquocnam commented 8 years ago

thanks so much, i try to learn with this.