Skip to content

concat can't display all the groupedBy observers on version 1.1.1 #3775

Closed
@lvzhitingzhou

Description

@lvzhitingzhou

Here are the code I‘m using to test:

        final Observable<GroupedObservable<String, AppInfo>> groupBy = Observable.from(appInfoList)
                .groupBy(appInfo -> {
                    SimpleDateFormat sdf = new SimpleDateFormat("MM/yyyy");
                    String groupedStr = sdf.format(new Date(appInfo.getLastUpdateTime()));
                    return groupedStr;
                });
        Observable.concat(groupBy)
                .subscribe(mSubscriber);

and the library is :

    compile 'io.reactivex:rxjava:1.1.1'
    compile 'io.reactivex:rxandroid:1.1.0'`

I got this result which apparently is not correct, I only got three results!:
device-2016-03-17-151005

but it should be like this as shown on the Rxjava-essential-code.
image

This problem never occurs on Version 1.1.0.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions