aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/loaders/CoordsGeocacheListLoader.java
blob: 2549b7b9420c123fd50b73d46c34c19bdb82cfee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package cgeo.geocaching.loaders;

import cgeo.geocaching.SearchResult;
import cgeo.geocaching.connector.ConnectorFactory;
import cgeo.geocaching.connector.capability.ISearchByCenter;
import cgeo.geocaching.location.Geopoint;

import org.eclipse.jdt.annotation.NonNull;

import rx.functions.Func1;

import android.content.Context;

public class CoordsGeocacheListLoader extends AbstractSearchLoader {
    private final @NonNull Geopoint coords;

    public CoordsGeocacheListLoader(final Context context, final @NonNull Geopoint coords) {
        super(context);
        this.coords = coords;
    }

    @Override
    public SearchResult runSearch() {
        return SearchResult.parallelCombineActive(ConnectorFactory.getSearchByCenterConnectors(),
                new Func1<ISearchByCenter, SearchResult>() {
                    @Override
                    public SearchResult call(final ISearchByCenter connector) {
                        return connector.searchByCenter(coords, CoordsGeocacheListLoader.this);
                    }
                });
    }

}