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

Add a method to the mpsc::Receiver for producing a non-blocking iterator #34724

Merged
merged 5 commits into from
Jul 22, 2016

Commits on Jul 8, 2016

  1. add a non blocking iterator for the mpsc::Receiver

    Currently, the `mpsc::Receiver` offers methods for receiving values in
    both blocking (`recv`) and non-blocking (`try_recv`) flavours. However
    only blocking iteration over values is supported. This commit adds a
    non-blocking iterator to complement the `try_recv` method, just as the
    blocking iterator complements the `recv` method.
    mitchmindtree committed Jul 8, 2016
    Configuration menu
    Copy the full SHA
    8aeb930 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b354887 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b02b38e View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2016

  1. Add the missing tracking issue field for rust-lang#34931 to the recei…

    …ver_try_iter stability attributes
    mitchmindtree committed Jul 20, 2016
    Configuration menu
    Copy the full SHA
    aed2e5c View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2016

  1. Fix issue in receiver_try_iter test where response sender would panic…

    … instead of break from the loop
    mitchmindtree committed Jul 21, 2016
    Configuration menu
    Copy the full SHA
    05af033 View commit details
    Browse the repository at this point in the history