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

Introduce ThreadPoolExecutor without a Queue #853

Merged

Commits on Mar 1, 2020

  1. Introduce ThreadPoolExecutor without a Queue

    This adds the ability for a ThreadPoolExecutor to have a queue
    depth of 0.
    
    This is useful if you'd like to perform the rejection handler if no
    available threads are availabile.
    
    This is analogous to Java's use of SynchronousQueue in
    ThreadPoolExecutor.
    
    See https://stackoverflow.com/a/10186825/143733 for more details
    fzakaria authored and pitr-ch committed Mar 1, 2020
    Copy the full SHA
    c92d11e View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    658ef56 View commit details
    Browse the repository at this point in the history
  3. remove whitespace

    fzakaria authored and pitr-ch committed Mar 1, 2020
    Copy the full SHA
    bf824c9 View commit details
    Browse the repository at this point in the history
  4. Fix documentation

    pitr-ch committed Mar 1, 2020
    Copy the full SHA
    7fa7e82 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2020

  1. remove 'concurrent/mvar'

    Co-Authored-By: Chalupa Petr <git@pitr.ch>
    fzakaria and pitr-ch committed Mar 2, 2020
    Copy the full SHA
    578285b View commit details
    Browse the repository at this point in the history
  2. make if condition more ruby-idiomatic

    Co-Authored-By: Chalupa Petr <git@pitr.ch>
    fzakaria and pitr-ch committed Mar 2, 2020
    Copy the full SHA
    f11b6ec View commit details
    Browse the repository at this point in the history
  3. Added changelog description

    fzakaria committed Mar 2, 2020
    Copy the full SHA
    16f15a6 View commit details
    Browse the repository at this point in the history