Skip to content

Instantly share code, notes, and snippets.

@barbeau
Created August 12, 2021 15:25
Show Gist options
  • Save barbeau/20517e4c30827f6890466e2a4ba47769 to your computer and use it in GitHub Desktop.
Save barbeau/20517e4c30827f6890466e2a4ba47769 to your computer and use it in GitHub Desktop.
Flow - lightweight architecture article - LocationRepository
class LocationRepository @Inject constructor(
private val sharedLocationManager: SharedLocationManager
) {
/**
* Observable flow for location updates
*/
fun getLocations() = sharedLocationManager.locationFlow()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment