Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Redo/Repeat Backpressure #1583

Merged
merged 1 commit into from
Aug 14, 2014

Commits on Aug 14, 2014

  1. Redo/Repeat Backpressure

    Fix backpressure and memory leaks
    
    This now works:
    
        public static void main(String[] args) {
            Observable<Integer> o1 = Observable.from(1, 1).concatWith(Observable.just(-1).repeat());
            Observable<Integer> o2 = Observable.from(2, 2, 2, 2);
            Observable.zip(o1, o2, (a, b) -> a + b).forEach(System.out::println);
        }
    benjchristensen committed Aug 14, 2014
    Configuration menu
    Copy the full SHA
    0475f5c View commit details
    Browse the repository at this point in the history