RxJava : fromIterable is not emitting all the items
I was trying out a simple code with fromIterable and flatMap operators. I'm just mapping a stream of long values to a stream of Result in my code. Nothing else
Here's my code.
I have an empty class
    class Result {
        @Override
        public String toString() {
            return "result";
        }
    }
And a function
    public Observable<Result> getResults(List<Long> requests) {
        return Observable.fromIterable(requests)
                .flatMap( aLong -> {
                    Result items = {new Result(), new Result()};
                    return Observable.fromIterable(Arrays.asList(items));
                });
    }       
And I subscribe to this as follows
     List<Long> ids = new ArrayList<>(Arrays.asList(1L, 2L, 3L));
     getResults(ids)
    .subscribe(new DisposableObserver<Result>() {
        @Override
        public void onNext(Result item) {
            Log.d(TAG, "onNext: " + item);
        }
        @Override
        public void onComplete() {
            Log.d(TAG, "onCompleted: ");
        }
        @Override
        public void onError(Throwable e) {
            Log.e(TAG, "onError: " + e.getMessage());
        }
    });     
My expected output is
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted:         
For each emission of fromIterable , the flatMap expected to return a stream with 2 values, so total 6 times onNext and then onComplete
But what I'm getting is
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted:        
Only 2 times onNext is triggering and then it completes. Where did the remaining 4 values go?
But the strange thing is , I added a Log to the doOnNext of fromIterable in my getResults function  as follows 
    public Observable<Result> getResults(List<Long> requests) {
        return Observable.fromIterable(requests)
                .doOnNext(i -> Log.d(TAG, "fromIterable emitted " + i))
                .flatMap(aLong -> {
                    Result items = {new Result(), new Result()};
                    return Observable.fromIterable(Arrays.asList(items));
                });
    }
Now it is emitting all the values!!!! Here's the output
    LOG: fromIterable emitted 1
    LOG: onNext: result
    LOG: onNext: result
    LOG: fromIterable emitted 2
    LOG: onNext: result
    LOG: onNext: result
    LOG: fromIterable emitted 3
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted: 
Whats happenning here? What change did the onNext make to the chain to emit all the values?
 android rx-java rx-java2
android rx-java rx-java2 add a comment |
I was trying out a simple code with fromIterable and flatMap operators. I'm just mapping a stream of long values to a stream of Result in my code. Nothing else
Here's my code.
I have an empty class
    class Result {
        @Override
        public String toString() {
            return "result";
        }
    }
And a function
    public Observable<Result> getResults(List<Long> requests) {
        return Observable.fromIterable(requests)
                .flatMap( aLong -> {
                    Result items = {new Result(), new Result()};
                    return Observable.fromIterable(Arrays.asList(items));
                });
    }       
And I subscribe to this as follows
     List<Long> ids = new ArrayList<>(Arrays.asList(1L, 2L, 3L));
     getResults(ids)
    .subscribe(new DisposableObserver<Result>() {
        @Override
        public void onNext(Result item) {
            Log.d(TAG, "onNext: " + item);
        }
        @Override
        public void onComplete() {
            Log.d(TAG, "onCompleted: ");
        }
        @Override
        public void onError(Throwable e) {
            Log.e(TAG, "onError: " + e.getMessage());
        }
    });     
My expected output is
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted:         
For each emission of fromIterable , the flatMap expected to return a stream with 2 values, so total 6 times onNext and then onComplete
But what I'm getting is
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted:        
Only 2 times onNext is triggering and then it completes. Where did the remaining 4 values go?
But the strange thing is , I added a Log to the doOnNext of fromIterable in my getResults function  as follows 
    public Observable<Result> getResults(List<Long> requests) {
        return Observable.fromIterable(requests)
                .doOnNext(i -> Log.d(TAG, "fromIterable emitted " + i))
                .flatMap(aLong -> {
                    Result items = {new Result(), new Result()};
                    return Observable.fromIterable(Arrays.asList(items));
                });
    }
Now it is emitting all the values!!!! Here's the output
    LOG: fromIterable emitted 1
    LOG: onNext: result
    LOG: onNext: result
    LOG: fromIterable emitted 2
    LOG: onNext: result
    LOG: onNext: result
    LOG: fromIterable emitted 3
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted: 
Whats happenning here? What change did the onNext make to the chain to emit all the values?
 android rx-java rx-java2
android rx-java rx-java2 
 
 
 2
 
 
 
 
 
 The likely reason you don't see all logs is because of Log deduplicating similar messages if they appear too close to each other. If you log unique messages, all 6 onNexts should appear.
 
 – akarnokd
 Nov 22 '18 at 8:31
 
 
 
 
 
 
 
 
 
 
 @akarnokd Ohh.. So it seems to be a logging issue. Nothing to do with RxJava right?
 
 – doe
 Nov 22 '18 at 9:16
 
 
 
add a comment |
I was trying out a simple code with fromIterable and flatMap operators. I'm just mapping a stream of long values to a stream of Result in my code. Nothing else
Here's my code.
I have an empty class
    class Result {
        @Override
        public String toString() {
            return "result";
        }
    }
And a function
    public Observable<Result> getResults(List<Long> requests) {
        return Observable.fromIterable(requests)
                .flatMap( aLong -> {
                    Result items = {new Result(), new Result()};
                    return Observable.fromIterable(Arrays.asList(items));
                });
    }       
And I subscribe to this as follows
     List<Long> ids = new ArrayList<>(Arrays.asList(1L, 2L, 3L));
     getResults(ids)
    .subscribe(new DisposableObserver<Result>() {
        @Override
        public void onNext(Result item) {
            Log.d(TAG, "onNext: " + item);
        }
        @Override
        public void onComplete() {
            Log.d(TAG, "onCompleted: ");
        }
        @Override
        public void onError(Throwable e) {
            Log.e(TAG, "onError: " + e.getMessage());
        }
    });     
My expected output is
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted:         
For each emission of fromIterable , the flatMap expected to return a stream with 2 values, so total 6 times onNext and then onComplete
But what I'm getting is
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted:        
Only 2 times onNext is triggering and then it completes. Where did the remaining 4 values go?
But the strange thing is , I added a Log to the doOnNext of fromIterable in my getResults function  as follows 
    public Observable<Result> getResults(List<Long> requests) {
        return Observable.fromIterable(requests)
                .doOnNext(i -> Log.d(TAG, "fromIterable emitted " + i))
                .flatMap(aLong -> {
                    Result items = {new Result(), new Result()};
                    return Observable.fromIterable(Arrays.asList(items));
                });
    }
Now it is emitting all the values!!!! Here's the output
    LOG: fromIterable emitted 1
    LOG: onNext: result
    LOG: onNext: result
    LOG: fromIterable emitted 2
    LOG: onNext: result
    LOG: onNext: result
    LOG: fromIterable emitted 3
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted: 
Whats happenning here? What change did the onNext make to the chain to emit all the values?
 android rx-java rx-java2
android rx-java rx-java2 I was trying out a simple code with fromIterable and flatMap operators. I'm just mapping a stream of long values to a stream of Result in my code. Nothing else
Here's my code.
I have an empty class
    class Result {
        @Override
        public String toString() {
            return "result";
        }
    }
And a function
    public Observable<Result> getResults(List<Long> requests) {
        return Observable.fromIterable(requests)
                .flatMap( aLong -> {
                    Result items = {new Result(), new Result()};
                    return Observable.fromIterable(Arrays.asList(items));
                });
    }       
And I subscribe to this as follows
     List<Long> ids = new ArrayList<>(Arrays.asList(1L, 2L, 3L));
     getResults(ids)
    .subscribe(new DisposableObserver<Result>() {
        @Override
        public void onNext(Result item) {
            Log.d(TAG, "onNext: " + item);
        }
        @Override
        public void onComplete() {
            Log.d(TAG, "onCompleted: ");
        }
        @Override
        public void onError(Throwable e) {
            Log.e(TAG, "onError: " + e.getMessage());
        }
    });     
My expected output is
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted:         
For each emission of fromIterable , the flatMap expected to return a stream with 2 values, so total 6 times onNext and then onComplete
But what I'm getting is
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted:        
Only 2 times onNext is triggering and then it completes. Where did the remaining 4 values go?
But the strange thing is , I added a Log to the doOnNext of fromIterable in my getResults function  as follows 
    public Observable<Result> getResults(List<Long> requests) {
        return Observable.fromIterable(requests)
                .doOnNext(i -> Log.d(TAG, "fromIterable emitted " + i))
                .flatMap(aLong -> {
                    Result items = {new Result(), new Result()};
                    return Observable.fromIterable(Arrays.asList(items));
                });
    }
Now it is emitting all the values!!!! Here's the output
    LOG: fromIterable emitted 1
    LOG: onNext: result
    LOG: onNext: result
    LOG: fromIterable emitted 2
    LOG: onNext: result
    LOG: onNext: result
    LOG: fromIterable emitted 3
    LOG: onNext: result
    LOG: onNext: result
    LOG: onCompleted: 
Whats happenning here? What change did the onNext make to the chain to emit all the values?
 android rx-java rx-java2
android rx-java rx-java2  android rx-java rx-java2
android rx-java rx-java2 asked Nov 22 '18 at 6:37
doedoe
7510
7510
 
 
 2
 
 
 
 
 
 The likely reason you don't see all logs is because of Log deduplicating similar messages if they appear too close to each other. If you log unique messages, all 6 onNexts should appear.
 
 – akarnokd
 Nov 22 '18 at 8:31
 
 
 
 
 
 
 
 
 
 
 @akarnokd Ohh.. So it seems to be a logging issue. Nothing to do with RxJava right?
 
 – doe
 Nov 22 '18 at 9:16
 
 
 
add a comment |
 
 
 2
 
 
 
 
 
 The likely reason you don't see all logs is because of Log deduplicating similar messages if they appear too close to each other. If you log unique messages, all 6 onNexts should appear.
 
 – akarnokd
 Nov 22 '18 at 8:31
 
 
 
 
 
 
 
 
 
 
 @akarnokd Ohh.. So it seems to be a logging issue. Nothing to do with RxJava right?
 
 – doe
 Nov 22 '18 at 9:16
 
 
 
2
2
The likely reason you don't see all logs is because of Log deduplicating similar messages if they appear too close to each other. If you log unique messages, all 6 onNexts should appear.
– akarnokd
Nov 22 '18 at 8:31
The likely reason you don't see all logs is because of Log deduplicating similar messages if they appear too close to each other. If you log unique messages, all 6 onNexts should appear.
– akarnokd
Nov 22 '18 at 8:31
@akarnokd Ohh.. So it seems to be a logging issue. Nothing to do with RxJava right?
– doe
Nov 22 '18 at 9:16
@akarnokd Ohh.. So it seems to be a logging issue. Nothing to do with RxJava right?
– doe
Nov 22 '18 at 9:16
add a comment |
                            0
                        
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53425144%2frxjava-fromiterable-is-not-emitting-all-the-items%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
                            0
                        
active
oldest
votes
                            0
                        
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53425144%2frxjava-fromiterable-is-not-emitting-all-the-items%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
The likely reason you don't see all logs is because of Log deduplicating similar messages if they appear too close to each other. If you log unique messages, all 6 onNexts should appear.
– akarnokd
Nov 22 '18 at 8:31
@akarnokd Ohh.. So it seems to be a logging issue. Nothing to do with RxJava right?
– doe
Nov 22 '18 at 9:16