定期从 Retrofit 订阅 Observable

Subscribe to Observable from Retrofit Periodically

我正在尝试使用 Retrofit 运行 REST api 调用并让它 return 和 Observable 但目前我只能弄清楚如何将它设置为延迟,但不幸的是,这跳过了 "first interval"

我在这里尝试获取联系人列表

public interface IContactWebApi {
    @GET ("api/GetContactsByGroup")
    Observable<Groups> getContactsByGroupSync(@Query ("id") String deviceUid);
}

这里是我使用延迟获得可观察值的地方

public void syncContacts(String address, String uid, int interval) {
   Retrofit retrofit = getRetrofit(address, true);

    Observable<List<Group>> groupObservable = retrofit.create(IContactWebApi.class)
            .getContactsByGroupSync(id)
            .subscribeOn(Schedulers.io())
            .delay(interval, TimeUnit.SECONDS)
            .onErrorResumeNext(Observable.empty())
            .repeat()
            .observeOn(AndroidSchedulers.mainThread());
        groupObservable.subscribe(groups -> handleGroups(groups));
}

我看到一些建议 Observable.interval,但我似乎无法弄清楚如何将其与另一个间隔一起使用。到目前为止,我设法做到的最好的事情是 运行 它一次没有延迟,然后在订阅 lamda 中我用一个延迟

替换了 observable
    Observable<List<Group>> groupObservable = retrofit.create(IContactWebApi.class)
            .getContactsByGroupSync(uid)
            .map(Groups::getGroups)
            .subscribeOn(Schedulers.io())
            .onErrorResumeNext(Observable.empty())
            .observeOn(AndroidSchedulers.mainThread());
    groupObservable.subscribe(groups -> {
        handleGroups(groups)
        retrofit.create(IContactWebApi.class)
                .getContactsByGroupSync(uid)
                .map(Groups::getGroups)
                .subscribeOn(Schedulers.io())
                .delay(interval, TimeUnit.SECONDS)
                .onErrorResumeNext(Observable.empty())
                .repeat()
                .observeOn(AndroidSchedulers.mainThread())
                .subscribe(groups2 -> handleGroups(groups2));
    });

有谁知道更好的方法吗?

看来你可以只使用 intervalflatMap:

IContactWebApi api = retrofit.create(IContactWebApi.class);
Observable.interval(interval, TimeUnit.SECONDS)
        .flatMap(i -> api.getContactsByGroupSync(uid))
        .map(Groups::getGroups)
        .subscribeOn(Schedulers.io())
        .onErrorResumeNext(Observable.empty())
        .observeOn(AndroidSchedulers.mainThread())
        .subscribe(groups -> handleGroups(groups));