Skip to content

Instantly share code, notes, and snippets.

@talosdev
Last active May 22, 2018 19:56
Show Gist options
  • Select an option

  • Save talosdev/500b43293f04716b2f3e9fd606b4a999 to your computer and use it in GitHub Desktop.

Select an option

Save talosdev/500b43293f04716b2f3e9fd606b4a999 to your computer and use it in GitHub Desktop.
public class LocationInteractor {
private final LocationProvider locationProvider;
@Inject
public LocationInteractor(LocationProvider locationProvider) {
this.locationProvider = locationProvider;
}
public Single<Location> getLocation() {
return locationProvider.getLocation();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment