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

Adopt Limit and ForEach Java 8 Naming Conventions #1232

Merged
merged 2 commits into from
May 20, 2014

Commits on May 20, 2014

  1. Limit alias to Take

    - as per Java 8 Stream naming conventions in discussion ReactiveX#678
    benjchristensen committed May 20, 2014
    Configuration menu
    Copy the full SHA
    06ba752 View commit details
    Browse the repository at this point in the history
  2. ForEach aliases to Subscribe to match Java 8 Convention

    As per discussion at ReactiveX#678
    
    Code like this is now supported:
    
    ```java
    Observable.from(1, 2, 3).forEach(System.out::println);
    Observable.from(1, 2, 3).toBlocking().forEach(System.out::println);
    ```
    benjchristensen committed May 20, 2014
    Configuration menu
    Copy the full SHA
    48a845c View commit details
    Browse the repository at this point in the history