Skip to content

Instantly share code, notes, and snippets.

@krzdabrowski
Last active January 15, 2023 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krzdabrowski/8f1a63ae1fef807b7afd8db2d3ef3c26 to your computer and use it in GitHub Desktop.
Save krzdabrowski/8f1a63ae1fef807b7afd8db2d3ef3c26 to your computer and use it in GitHub Desktop.
@Dao
interface RocketDao {
@Query("SELECT * FROM RocketCached")
fun getRockets(): Flow<List<RocketCached>>
@Upsert
suspend fun saveRockets(rockets: List<RocketCached>)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment