Andrew Grosner

Results 31 comments of Andrew Grosner

not sure what would cause the DB to clear itself. Do you have more insight into what happens?

do you mean the method `addModelChangeListener`?

in 5.0.0-alpha1 with Kotlin we have almost full null safety involved and that will not happen. As for now I'd recommend checking for `null` and discard any event that returns...

`DirectModelNotifier` is a little different in implementation. use `DirectModelNotifier.get()` to utilize the instance and register / deregister for `ModelChangedListener`. It'll give you the direct model object and what changed. You...

Future plans would try to involve utilizing db triggers and checking for changes to a new, custom table which keeps track of these changes in the SQLite layer, thus working...

This looks like a bug . Which flowable are you using? Or a sample of what you are trying to do in the code

How are you updating your items in the table? Just curious to understand.

ill label as enhancement and think about a solution. Might be a special kind of migration that clears the DB, but I will see how other libs do it.

lol not a bad idea. I think im going to see how Room does it, as it does it whenever no migrations specified. I am not a fan of auto...

not currently an easy way, but good idea. I can add a `typeConverters` field to the `@Database` annnotation to allow you specify which ones are included. or I might allow...