You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not really sure the best way to achieve this. It could very well be ignorance on my part.
I have an Android room table i want to Flow on. Something like: Flow<Vehicle>
First i need to get the userVehicleId from the User Repository. That isn't a flow, it returns Result<Int, Unit>
Thanks for your report. We have an active discussion on extensions for kotlin's Flow type in #78. Feel free to add any ideas or problems you are facing in that thread.
I'm not really sure the best way to achieve this. It could very well be ignorance on my part.
I have an Android room table i want to Flow on. Something like:
Flow<Vehicle>
First i need to get the userVehicleId from the User Repository. That isn't a flow, it returns
Result<Int, Unit>
The function i have atm looks like this:
This isn't valid and won't compile. Since I'm returning
Result<Flow<Vehicle, Unit>
Thanks in advance!
The text was updated successfully, but these errors were encountered: